Struct secp256k1::Message [] [src]

pub struct Message(_);

A (hashed) message input to an ECDSA signature

Methods

impl Message
[src]

[src]

Converts the object to a raw pointer for FFI interfacing

[src]

Converts the object to a mutable raw pointer for FFI interfacing

[src]

Returns the length of the object as an array

[src]

Returns whether the object as an array is empty

impl Message
[src]

[src]

Converts a MESSAGE_SIZE-byte slice to a message object

Trait Implementations

impl Copy for Message
[src]

impl PartialEq for Message
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for Message
[src]

impl PartialOrd for Message
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Message
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Clone for Message
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Index<usize> for Message
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for Message
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Debug for Message
[src]

[src]

Formats the value using the given formatter. Read more

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

Creates a message from a MESSAGE_SIZE byte array

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Message

impl Sync for Message