pub struct DroppedGrant {
pub path: String,
pub verb: String,
pub reason: String,
}Expand description
One filesystem grant the sandbox refused to install, and why.
The grant stays in profile.yaml — this records that it did not reach the
kernel, which is otherwise knowable only from a WARN line in a log nobody
queries.
Fields§
§path: String§verb: String"read" or "write".
reason: StringTrait Implementations§
Source§impl Clone for DroppedGrant
impl Clone for DroppedGrant
Source§fn clone(&self) -> DroppedGrant
fn clone(&self) -> DroppedGrant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DroppedGrant
impl Debug for DroppedGrant
Source§impl<'de> Deserialize<'de> for DroppedGrant
impl<'de> Deserialize<'de> for DroppedGrant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DroppedGrant
impl PartialEq for DroppedGrant
Source§impl Serialize for DroppedGrant
impl Serialize for DroppedGrant
impl StructuralPartialEq for DroppedGrant
Auto Trait Implementations§
impl Freeze for DroppedGrant
impl RefUnwindSafe for DroppedGrant
impl Send for DroppedGrant
impl Sync for DroppedGrant
impl Unpin for DroppedGrant
impl UnsafeUnpin for DroppedGrant
impl UnwindSafe for DroppedGrant
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