pub enum ConnectorHealthStatus {
Healthy,
Unhealthy,
}Expand description
ConnectorHealthStatus
JSON schema
{
"type": "string",
"enum": [
"Healthy",
"Unhealthy"
]
}Variants§
Trait Implementations§
Source§impl Clone for ConnectorHealthStatus
impl Clone for ConnectorHealthStatus
Source§fn clone(&self) -> ConnectorHealthStatus
fn clone(&self) -> ConnectorHealthStatus
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 moreSource§impl Debug for ConnectorHealthStatus
impl Debug for ConnectorHealthStatus
Source§impl<'de> Deserialize<'de> for ConnectorHealthStatus
impl<'de> Deserialize<'de> for ConnectorHealthStatus
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
Source§impl From<&ConnectorHealthStatus> for ConnectorHealthStatus
impl From<&ConnectorHealthStatus> for ConnectorHealthStatus
Source§fn from(value: &ConnectorHealthStatus) -> Self
fn from(value: &ConnectorHealthStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for ConnectorHealthStatus
impl FromStr for ConnectorHealthStatus
Source§impl Hash for ConnectorHealthStatus
impl Hash for ConnectorHealthStatus
Source§impl Ord for ConnectorHealthStatus
impl Ord for ConnectorHealthStatus
Source§fn cmp(&self, other: &ConnectorHealthStatus) -> Ordering
fn cmp(&self, other: &ConnectorHealthStatus) -> 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 ConnectorHealthStatus
impl PartialEq for ConnectorHealthStatus
Source§fn eq(&self, other: &ConnectorHealthStatus) -> bool
fn eq(&self, other: &ConnectorHealthStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ConnectorHealthStatus
impl PartialOrd for ConnectorHealthStatus
Source§impl Serialize for ConnectorHealthStatus
impl Serialize for ConnectorHealthStatus
Source§impl ToString for ConnectorHealthStatus
impl ToString for ConnectorHealthStatus
Source§impl TryFrom<&String> for ConnectorHealthStatus
impl TryFrom<&String> for ConnectorHealthStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ConnectorHealthStatus
impl TryFrom<&str> for ConnectorHealthStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ConnectorHealthStatus
impl TryFrom<String> for ConnectorHealthStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ConnectorHealthStatus
impl Eq for ConnectorHealthStatus
impl StructuralPartialEq for ConnectorHealthStatus
Auto Trait Implementations§
impl Freeze for ConnectorHealthStatus
impl RefUnwindSafe for ConnectorHealthStatus
impl Send for ConnectorHealthStatus
impl Sync for ConnectorHealthStatus
impl Unpin for ConnectorHealthStatus
impl UnsafeUnpin for ConnectorHealthStatus
impl UnwindSafe for ConnectorHealthStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.