pub enum CacheLocation {
Internal,
External,
Reserved,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for CacheLocation
impl Clone for CacheLocation
Source§fn clone(&self) -> CacheLocation
fn clone(&self) -> CacheLocation
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 CacheLocation
impl Debug for CacheLocation
Source§impl Display for CacheLocation
impl Display for CacheLocation
Source§impl From<u16> for CacheLocation
impl From<u16> for CacheLocation
Source§fn from(word: u16) -> CacheLocation
fn from(word: u16) -> CacheLocation
Converts to this type from the input type.
Source§impl Hash for CacheLocation
impl Hash for CacheLocation
Source§impl PartialEq for CacheLocation
impl PartialEq for CacheLocation
impl Eq for CacheLocation
impl StructuralPartialEq for CacheLocation
Auto Trait Implementations§
impl Freeze for CacheLocation
impl RefUnwindSafe for CacheLocation
impl Send for CacheLocation
impl Sync for CacheLocation
impl Unpin for CacheLocation
impl UnwindSafe for CacheLocation
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