pub enum ShareCacheMode {
Manual = 0,
Auto = 1,
Vdo = 2,
NoCache = 3,
All = 15,
}Expand description
Share caching mode for offline file access
Variants§
Manual = 0
Manual caching - client can cache files explicitly selected by user
Auto = 1
Automatic caching - client can automatically cache files used by user
Vdo = 2
VDO caching - client can use cached files even when share is available
NoCache = 3
No caching - offline caching must not occur
All = 15
Trait Implementations§
Source§fn clone(&self) -> ShareCacheMode
fn clone(&self) -> ShareCacheMode
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§type InOut = ShareCacheMode
type InOut = ShareCacheMode
The interface type of the specifier. Read more
Source§fn into_bytes(input: Self::InOut) -> Result<Self::Bytes, OutOfBounds>
fn into_bytes(input: Self::InOut) -> Result<Self::Bytes, OutOfBounds>
Converts some bytes into the in-out type. Read more
Source§fn from_bytes(
bytes: Self::Bytes,
) -> Result<Self::InOut, InvalidBitPattern<Self::Bytes>>
fn from_bytes( bytes: Self::Bytes, ) -> Result<Self::InOut, InvalidBitPattern<Self::Bytes>>
Converts the given bytes into the in-out type. Read more
Auto Trait Implementations§
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