pub enum Right {
Read,
Write,
Append,
}Variants§
Read
Full read access to the resource and its children. urls::READ
Write
Full edit, update, destroy access to the resource and its children. urls::WRITE
Append
Create new children (append to tree) urls::APPEND
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Right
impl RefUnwindSafe for Right
impl Send for Right
impl Sync for Right
impl Unpin for Right
impl UnsafeUnpin for Right
impl UnwindSafe for Right
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