pub struct EffectiveAccess {
pub owner_only: bool,
pub other_readers: Vec<String>,
}Expand description
Read back from the object, not inferred from what we asked for.
Fields§
§owner_only: bool§other_readers: Vec<String>Principals other than the owner that can read it, named for a human — a mode string on Unix, a resolved account name on Windows.
Trait Implementations§
Source§impl Clone for EffectiveAccess
impl Clone for EffectiveAccess
Source§fn clone(&self) -> EffectiveAccess
fn clone(&self) -> EffectiveAccess
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 EffectiveAccess
impl Debug for EffectiveAccess
impl Eq for EffectiveAccess
Source§impl PartialEq for EffectiveAccess
impl PartialEq for EffectiveAccess
impl StructuralPartialEq for EffectiveAccess
Auto Trait Implementations§
impl Freeze for EffectiveAccess
impl RefUnwindSafe for EffectiveAccess
impl Send for EffectiveAccess
impl Sync for EffectiveAccess
impl Unpin for EffectiveAccess
impl UnsafeUnpin for EffectiveAccess
impl UnwindSafe for EffectiveAccess
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