pub enum ClaimType {
Direct,
Indirect,
Child,
}
Expand description
Type of the claim, that changes depending on how the claim was created.
Variants§
Direct
A principal claimed this resource directly.
Indirect
A principal claimed a resource that contains this resource (e.g. a process containing a VMO).
Child
A principal claimed a child of this resource (e.g. a copy-on-write VMO child of this VMO).
Trait Implementations§
impl Copy for ClaimType
impl Eq for ClaimType
impl StructuralPartialEq for ClaimType
Auto Trait Implementations§
impl Freeze for ClaimType
impl RefUnwindSafe for ClaimType
impl Send for ClaimType
impl Sync for ClaimType
impl Unpin for ClaimType
impl UnwindSafe for ClaimType
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