Struct minisign::SignatureBones[][src]

pub struct SignatureBones { /* fields omitted */ }

A trimmed-down signature, without any comments section, with binary serialization only

Implementations

impl SignatureBones[src]

pub fn is_prehashed(&self) -> bool[src]

Returns true if the signed data was pre-hashed.

pub fn from_bytes(bytes: &[u8]) -> Result<SignatureBones>[src]

Create a new SignatureBones from a &u8.

pub fn to_bytes(&self) -> Vec<u8>[src]

Return a SignatureBones as bytes, for storage.

pub const BYTES: usize[src]

Size of a minimal signature in bytes

Trait Implementations

impl Clone for SignatureBones[src]

impl Into<SignatureBones> for SignatureBox[src]

impl Into<SignatureBox> for SignatureBones[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.