pub struct ConnectorHealth {
pub description: Option<String>,
pub status: ConnectorHealthStatus,
}Expand description
ConnectorHealth
JSON schema
{
"type": "object",
"required": [
"status"
],
"properties": {
"description": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/ConnectorHealthStatus"
}
}
}Fields§
§description: Option<String>§status: ConnectorHealthStatusImplementations§
Source§impl ConnectorHealth
impl ConnectorHealth
pub fn builder() -> ConnectorHealth
Trait Implementations§
Source§impl Clone for ConnectorHealth
impl Clone for ConnectorHealth
Source§fn clone(&self) -> ConnectorHealth
fn clone(&self) -> ConnectorHealth
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 ConnectorHealth
impl Debug for ConnectorHealth
Source§impl<'de> Deserialize<'de> for ConnectorHealth
impl<'de> Deserialize<'de> for ConnectorHealth
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<&ConnectorHealth> for ConnectorHealth
impl From<&ConnectorHealth> for ConnectorHealth
Source§fn from(value: &ConnectorHealth) -> Self
fn from(value: &ConnectorHealth) -> Self
Converts to this type from the input type.
Source§impl From<ConnectorHealth> for ConnectorHealth
impl From<ConnectorHealth> for ConnectorHealth
Source§fn from(value: ConnectorHealth) -> Self
fn from(value: ConnectorHealth) -> Self
Converts to this type from the input type.
Source§impl Serialize for ConnectorHealth
impl Serialize for ConnectorHealth
Source§impl TryFrom<ConnectorHealth> for ConnectorHealth
impl TryFrom<ConnectorHealth> for ConnectorHealth
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ConnectorHealth) -> Result<Self, ConversionError>
fn try_from(value: ConnectorHealth) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ConnectorHealth
impl RefUnwindSafe for ConnectorHealth
impl Send for ConnectorHealth
impl Sync for ConnectorHealth
impl Unpin for ConnectorHealth
impl UnsafeUnpin for ConnectorHealth
impl UnwindSafe for ConnectorHealth
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