Struct secp256k1::ffi::RecoverableSignature [] [src]

#[repr(C)]
pub struct RecoverableSignature(_);

Library-internal representation of a Secp256k1 signature + recovery ID

Methods

impl RecoverableSignature
[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 RecoverableSignature
[src]

[src]

Create a new (zeroed) signature usable for the FFI interface

[src]

Create a new (uninitialized) signature usable for the FFI interface

Trait Implementations

impl Copy for RecoverableSignature
[src]

impl PartialEq for RecoverableSignature
[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 RecoverableSignature
[src]

impl Clone for RecoverableSignature
[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 RecoverableSignature
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for RecoverableSignature
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Debug for RecoverableSignature
[src]

[src]

Formats the value using the given formatter. Read more

impl From<RecoverableSignature> for RecoverableSignature
[src]

Creates a new recoverable signature from a FFI one

[src]

Performs the conversion.

Auto Trait Implementations