pub struct GetTransactionStatusResponse {
pub custom_data: Option<CustomData>,
pub messages_in_queue: bool,
pub ongoing_indicator: Option<bool>,
}Fields§
§custom_data: Option<CustomData>§messages_in_queue: boolWhether there are still message to be delivered.
ongoing_indicator: Option<bool>Whether the transaction is still ongoing.
Trait Implementations§
Source§impl Clone for GetTransactionStatusResponse
impl Clone for GetTransactionStatusResponse
Source§fn clone(&self) -> GetTransactionStatusResponse
fn clone(&self) -> GetTransactionStatusResponse
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 moreSource§impl Debug for GetTransactionStatusResponse
impl Debug for GetTransactionStatusResponse
impl Eq for GetTransactionStatusResponse
impl StructuralPartialEq for GetTransactionStatusResponse
Auto Trait Implementations§
impl Freeze for GetTransactionStatusResponse
impl RefUnwindSafe for GetTransactionStatusResponse
impl Send for GetTransactionStatusResponse
impl Sync for GetTransactionStatusResponse
impl Unpin for GetTransactionStatusResponse
impl UnsafeUnpin for GetTransactionStatusResponse
impl UnwindSafe for GetTransactionStatusResponse
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