Struct secp256k1::Message [] [src]

pub struct Message(_);

A (hashed) message input to an ECDSA signature

Methods

impl Message
[src]

Converts the object to a raw pointer for FFI interfacing

Converts the object to a mutable raw pointer for FFI interfacing

Returns the length of the object as an array

Returns whether the object as an array is empty

impl Message
[src]

Converts a MESSAGE_SIZE-byte slice to a message object

Trait Implementations

impl Copy for Message
[src]

impl PartialEq for Message
[src]

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

This method tests for !=.

impl Eq for Message
[src]

impl Clone for Message
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Index<usize> for Message
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

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

The returned type after indexing

The method for the indexing (container[index]) operation

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

The returned type after indexing

The method for the indexing (container[index]) operation

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

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFull> for Message
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Decodable for Message
[src]

Deserialize a value using a Decoder.

impl Encodable for Message
[src]

Serialize a value using an Encoder.

impl Deserialize for Message
[src]

Deserialize this value given this Deserializer.

impl Serialize for Message
[src]

Serializes this value into this serializer.

impl Debug for Message
[src]

Formats the value using the given formatter.

impl From<[u8; 32]> for Message
[src]

Creates a message from a MESSAGE_SIZE byte array

Performs the conversion.