pub enum EtsAccess {
Private,
Protected,
Public,
}Expand description
ETS table access permissions.
Variants§
Private
Only owner can read/write
Protected
All can read, owner can write
Public
All can read and write
Trait Implementations§
impl Copy for EtsAccess
impl Eq for EtsAccess
impl StructuralPartialEq for EtsAccess
Auto Trait Implementations§
impl Freeze for EtsAccess
impl RefUnwindSafe for EtsAccess
impl Send for EtsAccess
impl Sync for EtsAccess
impl Unpin for EtsAccess
impl UnsafeUnpin for EtsAccess
impl UnwindSafe for EtsAccess
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