pub enum EnvironmentAccess {
Read,
Write,
}Variants§
Trait Implementations§
Source§impl Clone for EnvironmentAccess
impl Clone for EnvironmentAccess
Source§fn clone(&self) -> EnvironmentAccess
fn clone(&self) -> EnvironmentAccess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EnvironmentAccess
Source§impl Debug for EnvironmentAccess
impl Debug for EnvironmentAccess
impl Eq for EnvironmentAccess
Source§impl PartialEq for EnvironmentAccess
impl PartialEq for EnvironmentAccess
Source§fn eq(&self, other: &EnvironmentAccess) -> bool
fn eq(&self, other: &EnvironmentAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EnvironmentAccess
Auto Trait Implementations§
impl Freeze for EnvironmentAccess
impl RefUnwindSafe for EnvironmentAccess
impl Send for EnvironmentAccess
impl Sync for EnvironmentAccess
impl Unpin for EnvironmentAccess
impl UnsafeUnpin for EnvironmentAccess
impl UnwindSafe for EnvironmentAccess
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