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