Struct tugger_apple_codesign::RequirementSetBlob[][src]

pub struct RequirementSetBlob<'a> {
    pub requirements: HashMap<RequirementType, RequirementBlob<'a>>,
}

Represents a Requirement set blob.

A Requirement set blob contains nested Requirement blobs.

Fields

requirements: HashMap<RequirementType, RequirementBlob<'a>>

Implementations

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

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

pub fn set_requirements(
    &mut self,
    slot: RequirementType,
    blob: RequirementBlob<'a>
)
[src]

Set the requirements for a given RequirementType.

Trait Implementations

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

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

impl<'a> Default for RequirementSetBlob<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for RequirementSetBlob<'a>

impl<'a> Send for RequirementSetBlob<'a>

impl<'a> Sync for RequirementSetBlob<'a>

impl<'a> Unpin for RequirementSetBlob<'a>

impl<'a> UnwindSafe for RequirementSetBlob<'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.