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