pub struct QueryTransferStatusParams {
pub transfer_id: String,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_transfer_status] operation.
This struct holds all of the inputs you can pass when calling
query_transfer_status.
Fields§
§transfer_id: StringTransfer ID returned from outbound/inbound transfer
This field is **required.
recv_window: Option<i64>Request validity window in milliseconds
This field is **optional.
Implementations§
Source§impl QueryTransferStatusParams
impl QueryTransferStatusParams
Sourcepub fn builder(transfer_id: String) -> QueryTransferStatusParamsBuilder
pub fn builder(transfer_id: String) -> QueryTransferStatusParamsBuilder
Create a builder for [query_transfer_status].
Required parameters:
transfer_id— Transfer ID returned from outbound/inbound transfer
Trait Implementations§
Source§impl Clone for QueryTransferStatusParams
impl Clone for QueryTransferStatusParams
Source§fn clone(&self) -> QueryTransferStatusParams
fn clone(&self) -> QueryTransferStatusParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QueryTransferStatusParams
impl RefUnwindSafe for QueryTransferStatusParams
impl Send for QueryTransferStatusParams
impl Sync for QueryTransferStatusParams
impl Unpin for QueryTransferStatusParams
impl UnsafeUnpin for QueryTransferStatusParams
impl UnwindSafe for QueryTransferStatusParams
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