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

pub struct RecoverableSignature(_);

Library-internal representation of a Secp256k1 signature + recovery ID

Methods

impl RecoverableSignature
[src]

fn as_ptr(&self) -> *const c_uchar

Converts the object to a raw pointer for FFI interfacing

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

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

fn new() -> RecoverableSignature

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

unsafe fn blank() -> RecoverableSignature

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

Trait Implementations

impl Copy for RecoverableSignature
[src]

impl PartialEq for RecoverableSignature
[src]

fn eq(&self, other: &RecoverableSignature) -> 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 RecoverableSignature
[src]

impl Clone for RecoverableSignature
[src]

fn clone(&self) -> RecoverableSignature

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

type Output = c_uchar

The returned type after indexing

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

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

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

type Output = [c_uchar]

The returned type after indexing

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

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

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

type Output = [c_uchar]

The returned type after indexing

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

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

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

type Output = [c_uchar]

The returned type after indexing

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

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

impl Index<RangeFull> for RecoverableSignature
[src]

type Output = [c_uchar]

The returned type after indexing

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

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

impl Decodable for RecoverableSignature
[src]

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

impl Encodable for RecoverableSignature
[src]

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

impl Deserialize for RecoverableSignature
[src]

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

Deserialize this value given this Deserializer.

impl Serialize for RecoverableSignature
[src]

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

Serializes this value into this serializer.

impl Debug for RecoverableSignature
[src]

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

Formats the value using the given formatter.