pub struct SectionPermissions {
pub read: bool,
pub write: bool,
pub execute: bool,
}
Expand description
Section permissions
Fields§
§read: bool
§write: bool
§execute: bool
Trait Implementations§
Source§impl Clone for SectionPermissions
impl Clone for SectionPermissions
Source§fn clone(&self) -> SectionPermissions
fn clone(&self) -> SectionPermissions
Returns a duplicate of the value. Read more
1.0.0 · 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 SectionPermissions
impl Debug for SectionPermissions
Source§impl Default for SectionPermissions
impl Default for SectionPermissions
Source§fn default() -> SectionPermissions
fn default() -> SectionPermissions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SectionPermissions
impl RefUnwindSafe for SectionPermissions
impl Send for SectionPermissions
impl Sync for SectionPermissions
impl Unpin for SectionPermissions
impl UnwindSafe for SectionPermissions
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