Struct tugger_apple_codesign::Digest[][src]

pub struct Digest<'a> {
    pub data: Cow<'a, [u8]>,
}

Fields

data: Cow<'a, [u8]>

Implementations

impl<'a> Digest<'a>[src]

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

Whether this is the null hash (all 0s).

pub fn to_vec(&self) -> Vec<u8>

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator
[src]

pub fn to_owned(&self) -> Digest<'static>[src]

Trait Implementations

impl<'a> Debug for Digest<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Digest<'a>

impl<'a> Send for Digest<'a>

impl<'a> Sync for Digest<'a>

impl<'a> Unpin for Digest<'a>

impl<'a> UnwindSafe for Digest<'a>

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> Instrument for T[src]

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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.