pub enum AnonymousMemoryStrategy {
Unknown,
DevShm,
TmpDir,
}
Variants§
Trait Implementations§
source§impl Clone for AnonymousMemoryStrategy
impl Clone for AnonymousMemoryStrategy
source§fn clone(&self) -> AnonymousMemoryStrategy
fn clone(&self) -> AnonymousMemoryStrategy
Returns a copy 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 AnonymousMemoryStrategy
impl Debug for AnonymousMemoryStrategy
source§impl Hash for AnonymousMemoryStrategy
impl Hash for AnonymousMemoryStrategy
source§impl Ord for AnonymousMemoryStrategy
impl Ord for AnonymousMemoryStrategy
source§fn cmp(&self, other: &AnonymousMemoryStrategy) -> Ordering
fn cmp(&self, other: &AnonymousMemoryStrategy) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<AnonymousMemoryStrategy> for AnonymousMemoryStrategy
impl PartialEq<AnonymousMemoryStrategy> for AnonymousMemoryStrategy
source§fn eq(&self, other: &AnonymousMemoryStrategy) -> bool
fn eq(&self, other: &AnonymousMemoryStrategy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<AnonymousMemoryStrategy> for AnonymousMemoryStrategy
impl PartialOrd<AnonymousMemoryStrategy> for AnonymousMemoryStrategy
source§fn partial_cmp(&self, other: &AnonymousMemoryStrategy) -> Option<Ordering>
fn partial_cmp(&self, other: &AnonymousMemoryStrategy) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for AnonymousMemoryStrategy
impl Eq for AnonymousMemoryStrategy
impl StructuralEq for AnonymousMemoryStrategy
impl StructuralPartialEq for AnonymousMemoryStrategy
Auto Trait Implementations§
impl RefUnwindSafe for AnonymousMemoryStrategy
impl Send for AnonymousMemoryStrategy
impl Sync for AnonymousMemoryStrategy
impl Unpin for AnonymousMemoryStrategy
impl UnwindSafe for AnonymousMemoryStrategy
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