Struct secp256k1::Message [−][src]
pub struct Message(_);
A (hashed) message input to an ECDSA signature
Methods
impl Message[src]
impl Messagepub 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 Message[src]
impl Messagepub fn from_slice(data: &[u8]) -> Result<Message, Error>[src]
pub fn from_slice(data: &[u8]) -> Result<Message, Error>Converts a MESSAGE_SIZE-byte slice to a message object
Trait Implementations
impl Copy for Message[src]
impl Copy for Messageimpl PartialEq for Message[src]
impl PartialEq for Messagefn eq(&self, other: &Message) -> bool[src]
fn eq(&self, other: &Message) -> 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 Message[src]
impl Eq for Messageimpl Clone for Message[src]
impl Clone for Messagefn clone(&self) -> Message[src]
fn clone(&self) -> MessageReturns 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 Message[src]
impl Index<usize> for Messagetype 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 Message[src]
impl Index<Range<usize>> for Messagetype 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 Message[src]
impl Index<RangeTo<usize>> for Messagetype 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 Message[src]
impl Index<RangeFrom<usize>> for Messagetype 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 Message[src]
impl Index<RangeFull> for Messagetype 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 Message[src]
impl Debug for Messagefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<[u8; 32]> for Message[src]
impl From<[u8; 32]> for MessageCreates a message from a MESSAGE_SIZE byte array