pub struct AlertInstanceMessage {
pub text: Option<String>,
}
Expand description
AlertInstanceMessage
JSON schema
{
"type": "object",
"properties": {
"text": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§text: Option<String>
Implementations§
Source§impl AlertInstanceMessage
impl AlertInstanceMessage
pub fn builder() -> AlertInstanceMessage
Trait Implementations§
Source§impl Clone for AlertInstanceMessage
impl Clone for AlertInstanceMessage
Source§fn clone(&self) -> AlertInstanceMessage
fn clone(&self) -> AlertInstanceMessage
Returns a duplicate of the value. Read more
1.0.0 · 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 AlertInstanceMessage
impl Debug for AlertInstanceMessage
Source§impl<'de> Deserialize<'de> for AlertInstanceMessage
impl<'de> Deserialize<'de> for AlertInstanceMessage
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<&AlertInstanceMessage> for AlertInstanceMessage
impl From<&AlertInstanceMessage> for AlertInstanceMessage
Source§fn from(value: &AlertInstanceMessage) -> Self
fn from(value: &AlertInstanceMessage) -> Self
Converts to this type from the input type.
Source§impl From<AlertInstanceMessage> for AlertInstanceMessage
impl From<AlertInstanceMessage> for AlertInstanceMessage
Source§fn from(value: AlertInstanceMessage) -> Self
fn from(value: AlertInstanceMessage) -> Self
Converts to this type from the input type.
Source§impl Serialize for AlertInstanceMessage
impl Serialize for AlertInstanceMessage
Auto Trait Implementations§
impl Freeze for AlertInstanceMessage
impl RefUnwindSafe for AlertInstanceMessage
impl Send for AlertInstanceMessage
impl Sync for AlertInstanceMessage
impl Unpin for AlertInstanceMessage
impl UnwindSafe for AlertInstanceMessage
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