pub enum LinuxFileAccess {
Read,
Write,
ReadWrite,
}Expand description
Access requested for one opened Linux file handle.
Variants§
Read
The handle reads the revision-bound remote snapshot only.
Write
The handle writes durable local generations and does not permit reads.
ReadWrite
The handle reads and writes the durable local staging session.
Trait Implementations§
Source§impl Clone for LinuxFileAccess
impl Clone for LinuxFileAccess
Source§fn clone(&self) -> LinuxFileAccess
fn clone(&self) -> LinuxFileAccess
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 LinuxFileAccess
impl Debug for LinuxFileAccess
Source§impl PartialEq for LinuxFileAccess
impl PartialEq for LinuxFileAccess
impl Copy for LinuxFileAccess
impl Eq for LinuxFileAccess
impl StructuralPartialEq for LinuxFileAccess
Auto Trait Implementations§
impl Freeze for LinuxFileAccess
impl RefUnwindSafe for LinuxFileAccess
impl Send for LinuxFileAccess
impl Sync for LinuxFileAccess
impl Unpin for LinuxFileAccess
impl UnwindSafe for LinuxFileAccess
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