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