#[non_exhaustive]#[repr(u16)]pub enum ValAccess {
OB_GLOBAL_VAR = 0,
OB_SHARED_VAR = 1,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for ValAccess
impl Eq for ValAccess
impl StructuralPartialEq for ValAccess
Auto Trait Implementations§
impl Freeze for ValAccess
impl RefUnwindSafe for ValAccess
impl Send for ValAccess
impl Sync for ValAccess
impl Unpin for ValAccess
impl UnwindSafe for ValAccess
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