pub enum Subject {
Any,
TrustedApplications(Vec<TrustedApplication>),
Unknown(Vec<u32>),
}Expand description
Who an ACL entry grants access to.
Variants§
Any
Any application. What security add-generic-password -A writes, and what
the owner entry always carries.
TrustedApplications(Vec<TrustedApplication>)
Only these applications.
Unknown(Vec<u32>)
A shape this build does not model, preserved word for word.
Implementations§
Trait Implementations§
impl Eq for Subject
impl StructuralPartialEq for Subject
Auto Trait Implementations§
impl Freeze for Subject
impl RefUnwindSafe for Subject
impl Send for Subject
impl Sync for Subject
impl Unpin for Subject
impl UnsafeUnpin for Subject
impl UnwindSafe for Subject
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