Struct secp256k1::schnorr::Signature [−][src]
pub struct Signature(_);
A Schnorr signature.
Methods
impl Signature[src]
impl Signaturepub fn as_ptr(&self) -> *const u8[src]
pub fn as_ptr(&self) -> *const u8Converts the object to a raw pointer for FFI interfacing
pub fn as_mut_ptr(&mut self) -> *mut u8[src]
pub fn as_mut_ptr(&mut self) -> *mut u8Converts the object to a mutable raw pointer for FFI interfacing
pub fn len(&self) -> usize[src]
pub fn len(&self) -> usizeReturns the length of the object as an array
pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolReturns whether the object as an array is empty
impl Signature[src]
impl Signaturepub fn deserialize(data: &[u8]) -> Signature[src]
pub fn deserialize(data: &[u8]) -> SignatureDeserializes a signature from a 64-byte vector
pub fn serialize(&self) -> Vec<u8>[src]
pub fn serialize(&self) -> Vec<u8>Serializes a signature to a 64-byte vector
Trait Implementations
impl Copy for Signature[src]
impl Copy for Signatureimpl PartialEq for Signature[src]
impl PartialEq for Signaturefn eq(&self, other: &Signature) -> bool[src]
fn eq(&self, other: &Signature) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for Signature[src]
impl Eq for Signatureimpl Clone for Signature[src]
impl Clone for Signaturefn clone(&self) -> Signature[src]
fn clone(&self) -> SignatureReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Index<usize> for Signature[src]
impl Index<usize> for Signaturetype Output = u8
The returned type after indexing.
fn index(&self, index: usize) -> &u8[src]
fn index(&self, index: usize) -> &u8Performs the indexing (container[index]) operation.
impl Index<Range<usize>> for Signature[src]
impl Index<Range<usize>> for Signaturetype Output = [u8]
The returned type after indexing.
fn index(&self, index: Range<usize>) -> &[u8][src]
fn index(&self, index: Range<usize>) -> &[u8]Performs the indexing (container[index]) operation.
impl Index<RangeTo<usize>> for Signature[src]
impl Index<RangeTo<usize>> for Signaturetype Output = [u8]
The returned type after indexing.
fn index(&self, index: RangeTo<usize>) -> &[u8][src]
fn index(&self, index: RangeTo<usize>) -> &[u8]Performs the indexing (container[index]) operation.
impl Index<RangeFrom<usize>> for Signature[src]
impl Index<RangeFrom<usize>> for Signaturetype Output = [u8]
The returned type after indexing.
fn index(&self, index: RangeFrom<usize>) -> &[u8][src]
fn index(&self, index: RangeFrom<usize>) -> &[u8]Performs the indexing (container[index]) operation.
impl Index<RangeFull> for Signature[src]
impl Index<RangeFull> for Signaturetype Output = [u8]
The returned type after indexing.
fn index(&self, _: RangeFull) -> &[u8][src]
fn index(&self, _: RangeFull) -> &[u8]Performs the indexing (container[index]) operation.
impl Debug for Signature[src]
impl Debug for Signature