Enum security_framework::item::SearchResult
source · pub enum SearchResult {
Ref(Reference),
Dict(CFDictionary),
Data(Vec<u8>),
Other,
}
Expand description
An individual search result.
Variants§
Ref(Reference)
A reference to the Security Framework object, if asked for.
Dict(CFDictionary)
A dictionary of data about the Security Framework object, if asked for.
Data(Vec<u8>)
The Security Framework object as bytes, if asked for.
Other
An unknown representation of the Security Framework object.
Implementations§
source§impl SearchResult
impl SearchResult
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SearchResult
impl RefUnwindSafe for SearchResult
impl !Send for SearchResult
impl !Sync for SearchResult
impl Unpin for SearchResult
impl UnwindSafe for SearchResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more