pub struct GetTransactionParams {
pub tx_id: String,
}
Expand description
struct for passing parameters to the method [get_transaction
]
Fields§
§tx_id: String
The ID of the transaction to return
Implementations§
Source§impl GetTransactionParams
impl GetTransactionParams
Sourcepub fn builder() -> GetTransactionParamsBuilder
pub fn builder() -> GetTransactionParamsBuilder
Create an instance of GetTransactionParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetTransactionParams
impl Clone for GetTransactionParams
Source§fn clone(&self) -> GetTransactionParams
fn clone(&self) -> GetTransactionParams
Returns a copy 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 GetTransactionParams
impl RefUnwindSafe for GetTransactionParams
impl Send for GetTransactionParams
impl Sync for GetTransactionParams
impl Unpin for GetTransactionParams
impl UnwindSafe for GetTransactionParams
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