Struct tugger_apple_codesign::EntitlementsBlob[][src]

pub struct EntitlementsBlob<'a> { /* fields omitted */ }

Represents an Entitlements blob.

An entitlements blob contains an XML plist with a dict. Keys are strings of the entitlements being requested and values appear to be simple bools.

Implementations

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

pub fn from_string(s: &impl ToString + ?Sized) -> Self[src]

Construct an instance using any string as the payload.

Trait Implementations

impl<'a> Blob<'a> for EntitlementsBlob<'a>[src]

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

impl<'a> Display for EntitlementsBlob<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for EntitlementsBlob<'a>

impl<'a> Send for EntitlementsBlob<'a>

impl<'a> Sync for EntitlementsBlob<'a>

impl<'a> Unpin for EntitlementsBlob<'a>

impl<'a> UnwindSafe for EntitlementsBlob<'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> ToString for T where
    T: Display + ?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.