pub struct PingEventHookLastResponse {
pub code: (),
pub message: (),
pub status: String,
}
Expand description
PingEventHookLastResponse
JSON schema
{
"type": "object",
"required": [
"code",
"message",
"status"
],
"properties": {
"code": {
"type": "null"
},
"message": {
"type": "null"
},
"status": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§code: ()
§message: ()
§status: String
Implementations§
Source§impl PingEventHookLastResponse
impl PingEventHookLastResponse
pub fn builder() -> PingEventHookLastResponse
Trait Implementations§
Source§impl Clone for PingEventHookLastResponse
impl Clone for PingEventHookLastResponse
Source§fn clone(&self) -> PingEventHookLastResponse
fn clone(&self) -> PingEventHookLastResponse
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 PingEventHookLastResponse
impl Debug for PingEventHookLastResponse
Source§impl<'de> Deserialize<'de> for PingEventHookLastResponse
impl<'de> Deserialize<'de> for PingEventHookLastResponse
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<&PingEventHookLastResponse> for PingEventHookLastResponse
impl From<&PingEventHookLastResponse> for PingEventHookLastResponse
Source§fn from(value: &PingEventHookLastResponse) -> Self
fn from(value: &PingEventHookLastResponse) -> Self
Converts to this type from the input type.
Source§impl From<PingEventHookLastResponse> for PingEventHookLastResponse
impl From<PingEventHookLastResponse> for PingEventHookLastResponse
Source§fn from(value: PingEventHookLastResponse) -> Self
fn from(value: PingEventHookLastResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PingEventHookLastResponse
impl RefUnwindSafe for PingEventHookLastResponse
impl Send for PingEventHookLastResponse
impl Sync for PingEventHookLastResponse
impl Unpin for PingEventHookLastResponse
impl UnwindSafe for PingEventHookLastResponse
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