Struct secp256k1::Message [] [src]

pub struct Message(_);

A (hashed) message input to an ECDSA signature

Methods

impl Message
[src]

fn as_ptr(&self) -> *const u8

Converts the object to a raw pointer for FFI interfacing

fn as_mut_ptr(&mut self) -> *mut u8

Converts the object to a mutable raw pointer for FFI interfacing

fn len(&self) -> usize

Returns the length of the object as an array

impl Message
[src]

fn from_slice(data: &[u8]) -> Result<MessageError>

Converts a MESSAGE_SIZE-byte slice to a message object

Trait Implementations

impl Copy for Message
[src]

impl PartialEq for Message
[src]

fn eq(&self, other: &Message) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for Message
[src]

impl Clone for Message
[src]

fn clone(&self) -> Message

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Index<usize> for Message
[src]

type Output = u8

The returned type after indexing

fn index(&self, index: usize) -> &u8

The method for the indexing (Foo[Bar]) operation

impl Index<Range<usize>> for Message
[src]

type Output = [u8]

The returned type after indexing

fn index(&self, index: Range<usize>) -> &[u8]

The method for the indexing (Foo[Bar]) operation

impl Index<RangeTo<usize>> for Message
[src]

type Output = [u8]

The returned type after indexing

fn index(&self, index: RangeTo<usize>) -> &[u8]

The method for the indexing (Foo[Bar]) operation

impl Index<RangeFrom<usize>> for Message
[src]

type Output = [u8]

The returned type after indexing

fn index(&self, index: RangeFrom<usize>) -> &[u8]

The method for the indexing (Foo[Bar]) operation

impl Index<RangeFull> for Message
[src]

type Output = [u8]

The returned type after indexing

fn index(&self, _: RangeFull) -> &[u8]

The method for the indexing (Foo[Bar]) operation

impl Decodable for Message
[src]

fn decode<D: Decoder>(d: &mut D) -> Result<Message, D::Error>

impl Encodable for Message
[src]

fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error>

impl Deserialize for Message
[src]

fn deserialize<D>(d: &mut D) -> Result<Message, D::Error> where D: Deserializer

Deserialize this value given this Deserializer.

impl Serialize for Message
[src]

fn serialize<S>(&self, s: &mut S) -> Result<(), S::Error> where S: Serializer

Serializes this value into this serializer.

impl Debug for Message
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.