pub enum ProjectionFreshness {
Fresh,
Stale,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for ProjectionFreshness
impl Clone for ProjectionFreshness
Source§fn clone(&self) -> ProjectionFreshness
fn clone(&self) -> ProjectionFreshness
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 ProjectionFreshness
Source§impl Debug for ProjectionFreshness
impl Debug for ProjectionFreshness
Source§impl<'de> Deserialize<'de> for ProjectionFreshness
impl<'de> Deserialize<'de> for ProjectionFreshness
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProjectionFreshness
Source§impl PartialEq for ProjectionFreshness
impl PartialEq for ProjectionFreshness
Source§fn eq(&self, other: &ProjectionFreshness) -> bool
fn eq(&self, other: &ProjectionFreshness) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectionFreshness
impl Serialize for ProjectionFreshness
impl StructuralPartialEq for ProjectionFreshness
Auto Trait Implementations§
impl Freeze for ProjectionFreshness
impl RefUnwindSafe for ProjectionFreshness
impl Send for ProjectionFreshness
impl Sync for ProjectionFreshness
impl Unpin for ProjectionFreshness
impl UnsafeUnpin for ProjectionFreshness
impl UnwindSafe for ProjectionFreshness
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