pub enum IntegrationHealth {
Ok,
Error,
}Expand description
Integration status (active, disabled, error).
JSON schema
{
"description": "Integration status (active, disabled, error).",
"type": "string",
"enum": [
"ok",
"error"
]
}Variants§
Trait Implementations§
Source§impl Clone for IntegrationHealth
impl Clone for IntegrationHealth
Source§fn clone(&self) -> IntegrationHealth
fn clone(&self) -> IntegrationHealth
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 IntegrationHealth
impl Debug for IntegrationHealth
Source§impl<'de> Deserialize<'de> for IntegrationHealth
impl<'de> Deserialize<'de> for IntegrationHealth
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 Display for IntegrationHealth
impl Display for IntegrationHealth
Source§impl FromStr for IntegrationHealth
impl FromStr for IntegrationHealth
Source§impl Hash for IntegrationHealth
impl Hash for IntegrationHealth
Source§impl Ord for IntegrationHealth
impl Ord for IntegrationHealth
Source§fn cmp(&self, other: &IntegrationHealth) -> Ordering
fn cmp(&self, other: &IntegrationHealth) -> 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 IntegrationHealth
impl PartialEq for IntegrationHealth
Source§fn eq(&self, other: &IntegrationHealth) -> bool
fn eq(&self, other: &IntegrationHealth) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IntegrationHealth
impl PartialOrd for IntegrationHealth
Source§impl Serialize for IntegrationHealth
impl Serialize for IntegrationHealth
Source§impl TryFrom<&String> for IntegrationHealth
impl TryFrom<&String> for IntegrationHealth
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for IntegrationHealth
impl TryFrom<&str> for IntegrationHealth
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for IntegrationHealth
impl TryFrom<String> for IntegrationHealth
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for IntegrationHealth
impl Eq for IntegrationHealth
impl StructuralPartialEq for IntegrationHealth
Auto Trait Implementations§
impl Freeze for IntegrationHealth
impl RefUnwindSafe for IntegrationHealth
impl Send for IntegrationHealth
impl Sync for IntegrationHealth
impl Unpin for IntegrationHealth
impl UnsafeUnpin for IntegrationHealth
impl UnwindSafe for IntegrationHealth
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