pub struct ServerMessageResponseTransferDestinationRequest {
pub destination: Option<ServerMessageResponseTransferDestinationRequestDestination>,
pub error: Option<String>,
}
Fields§
§destination: Option<ServerMessageResponseTransferDestinationRequestDestination>
§error: Option<String>
This is the error message if the transfer should not be made.
Implementations§
Trait Implementations§
Source§impl Clone for ServerMessageResponseTransferDestinationRequest
impl Clone for ServerMessageResponseTransferDestinationRequest
Source§fn clone(&self) -> ServerMessageResponseTransferDestinationRequest
fn clone(&self) -> ServerMessageResponseTransferDestinationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ServerMessageResponseTransferDestinationRequest
impl Default for ServerMessageResponseTransferDestinationRequest
Source§fn default() -> ServerMessageResponseTransferDestinationRequest
fn default() -> ServerMessageResponseTransferDestinationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerMessageResponseTransferDestinationRequest
impl<'de> Deserialize<'de> for ServerMessageResponseTransferDestinationRequest
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 PartialEq for ServerMessageResponseTransferDestinationRequest
impl PartialEq for ServerMessageResponseTransferDestinationRequest
Source§fn eq(&self, other: &ServerMessageResponseTransferDestinationRequest) -> bool
fn eq(&self, other: &ServerMessageResponseTransferDestinationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ServerMessageResponseTransferDestinationRequest
Auto Trait Implementations§
impl Freeze for ServerMessageResponseTransferDestinationRequest
impl RefUnwindSafe for ServerMessageResponseTransferDestinationRequest
impl Send for ServerMessageResponseTransferDestinationRequest
impl Sync for ServerMessageResponseTransferDestinationRequest
impl Unpin for ServerMessageResponseTransferDestinationRequest
impl UnwindSafe for ServerMessageResponseTransferDestinationRequest
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