#[repr(i32)]pub enum Availability {
Unknown = 0,
Ready = 1,
NotAvailable = 2,
Stale = 3,
}Variants§
Unknown = 0
Ready = 1
NotAvailable = 2
account order snapshot has never completed
Stale = 3
reconnect/local incomplete rows invalidate completeness
Implementations§
Source§impl Availability
impl Availability
Source§impl Availability
impl Availability
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for Availability
impl Clone for Availability
Source§fn clone(&self) -> Availability
fn clone(&self) -> Availability
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 Availability
Source§impl Debug for Availability
impl Debug for Availability
Source§impl Default for Availability
impl Default for Availability
Source§fn default() -> Availability
fn default() -> Availability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Availability
impl<'de> Deserialize<'de> for Availability
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 Availability
Source§impl From<Availability> for i32
impl From<Availability> for i32
Source§fn from(value: Availability) -> i32
fn from(value: Availability) -> i32
Converts to this type from the input type.
Source§impl Hash for Availability
impl Hash for Availability
Source§impl Ord for Availability
impl Ord for Availability
Source§fn cmp(&self, other: &Availability) -> Ordering
fn cmp(&self, other: &Availability) -> Ordering
1.21.0 (const: unstable) · 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 for Availability
impl PartialEq for Availability
Source§fn eq(&self, other: &Availability) -> bool
fn eq(&self, other: &Availability) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for Availability
impl PartialOrd for Availability
Source§impl Serialize for Availability
impl Serialize for Availability
impl StructuralPartialEq for Availability
Source§impl TryFrom<i32> for Availability
impl TryFrom<i32> for Availability
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<Availability, UnknownEnumValue>
fn try_from(value: i32) -> Result<Availability, UnknownEnumValue>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for Availability
impl RefUnwindSafe for Availability
impl Send for Availability
impl Sync for Availability
impl Unpin for Availability
impl UnsafeUnpin for Availability
impl UnwindSafe for Availability
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