pub enum RehydratePriority {
High,
Standard,
}
Variants
High
Standard
Trait Implementations
sourceimpl AsRef<str> for RehydratePriority
impl AsRef<str> for RehydratePriority
sourceimpl Clone for RehydratePriority
impl Clone for RehydratePriority
sourcefn clone(&self) -> RehydratePriority
fn clone(&self) -> RehydratePriority
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RehydratePriority
impl Debug for RehydratePriority
sourceimpl<'de> Deserialize<'de> for RehydratePriority
impl<'de> Deserialize<'de> for RehydratePriority
sourcefn 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
sourceimpl Display for RehydratePriority
impl Display for RehydratePriority
sourceimpl From<RehydratePriority> for &'static str
impl From<RehydratePriority> for &'static str
sourcefn from(e: RehydratePriority) -> Self
fn from(e: RehydratePriority) -> Self
Converts to this type from the input type.
sourceimpl FromStr for RehydratePriority
impl FromStr for RehydratePriority
sourceimpl FromStringOptional<RehydratePriority> for RehydratePriority
impl FromStringOptional<RehydratePriority> for RehydratePriority
fn from_str_optional(s: &str) -> Result<RehydratePriority>
sourceimpl PartialEq<RehydratePriority> for RehydratePriority
impl PartialEq<RehydratePriority> for RehydratePriority
sourcefn eq(&self, other: &RehydratePriority) -> bool
fn eq(&self, other: &RehydratePriority) -> bool
sourceimpl PartialOrd<RehydratePriority> for RehydratePriority
impl PartialOrd<RehydratePriority> for RehydratePriority
sourcefn partial_cmp(&self, other: &RehydratePriority) -> Option<Ordering>
fn partial_cmp(&self, other: &RehydratePriority) -> Option<Ordering>
1.0.0 · sourcefn 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 moresourceimpl Serialize for RehydratePriority
impl Serialize for RehydratePriority
impl Copy for RehydratePriority
impl Eq for RehydratePriority
impl StructuralEq for RehydratePriority
impl StructuralPartialEq for RehydratePriority
Auto Trait Implementations
impl RefUnwindSafe for RehydratePriority
impl Send for RehydratePriority
impl Sync for RehydratePriority
impl Unpin for RehydratePriority
impl UnwindSafe for RehydratePriority
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.