pub struct TagPermissions {
pub readable: bool,
pub writable: bool,
}
Expand description
Access permissions for a tag
Fields§
§readable: bool
Whether the tag can be read
writable: bool
Whether the tag can be written
Trait Implementations§
Source§impl Clone for TagPermissions
impl Clone for TagPermissions
Source§fn clone(&self) -> TagPermissions
fn clone(&self) -> TagPermissions
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 TagPermissions
impl Debug for TagPermissions
Source§impl PartialEq for TagPermissions
impl PartialEq for TagPermissions
impl StructuralPartialEq for TagPermissions
Auto Trait Implementations§
impl Freeze for TagPermissions
impl RefUnwindSafe for TagPermissions
impl Send for TagPermissions
impl Sync for TagPermissions
impl Unpin for TagPermissions
impl UnwindSafe for TagPermissions
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