pub struct FilesystemCapability {
pub enabled: bool,
pub read_roots: Vec<String>,
pub write_roots: Vec<String>,
}Fields§
§enabled: bool§read_roots: Vec<String>§write_roots: Vec<String>Trait Implementations§
Source§impl Clone for FilesystemCapability
impl Clone for FilesystemCapability
Source§fn clone(&self) -> FilesystemCapability
fn clone(&self) -> FilesystemCapability
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 FilesystemCapability
impl Debug for FilesystemCapability
Source§impl Default for FilesystemCapability
impl Default for FilesystemCapability
Source§fn default() -> FilesystemCapability
fn default() -> FilesystemCapability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FilesystemCapability
impl<'de> Deserialize<'de> for FilesystemCapability
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 FilesystemCapability
impl PartialEq for FilesystemCapability
Source§fn eq(&self, other: &FilesystemCapability) -> bool
fn eq(&self, other: &FilesystemCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FilesystemCapability
impl Serialize for FilesystemCapability
impl Eq for FilesystemCapability
impl StructuralPartialEq for FilesystemCapability
Auto Trait Implementations§
impl Freeze for FilesystemCapability
impl RefUnwindSafe for FilesystemCapability
impl Send for FilesystemCapability
impl Sync for FilesystemCapability
impl Unpin for FilesystemCapability
impl UnsafeUnpin for FilesystemCapability
impl UnwindSafe for FilesystemCapability
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.