pub struct TransferInfo {
pub url: String,
pub nonce: Option<String>,
pub auth: Option<String>,
}Expand description
Transfer endpoint information from finalize login response.
Fields§
§url: StringThe URL to post the transfer request to.
nonce: Option<String>The nonce value for the transfer.
auth: Option<String>The auth value for the transfer.
Trait Implementations§
Source§impl Clone for TransferInfo
impl Clone for TransferInfo
Source§fn clone(&self) -> TransferInfo
fn clone(&self) -> TransferInfo
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 moreAuto Trait Implementations§
impl Freeze for TransferInfo
impl RefUnwindSafe for TransferInfo
impl Send for TransferInfo
impl Sync for TransferInfo
impl Unpin for TransferInfo
impl UnsafeUnpin for TransferInfo
impl UnwindSafe for TransferInfo
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