pub struct GetCommitmentTxResponse {
pub batches: Option<HashMap<String, IndexerBatch>>,
pub ended_at: Option<String>,
pub started_at: Option<String>,
pub total_input_amount: Option<i32>,
pub total_input_vtxos: Option<i32>,
pub total_output_amount: Option<i32>,
pub total_output_vtxos: Option<i32>,
}Fields§
§batches: Option<HashMap<String, IndexerBatch>>§ended_at: Option<String>§started_at: Option<String>§total_input_amount: Option<i32>§total_input_vtxos: Option<i32>§total_output_amount: Option<i32>§total_output_vtxos: Option<i32>Implementations§
Source§impl GetCommitmentTxResponse
impl GetCommitmentTxResponse
pub fn new() -> GetCommitmentTxResponse
Trait Implementations§
Source§impl Clone for GetCommitmentTxResponse
impl Clone for GetCommitmentTxResponse
Source§fn clone(&self) -> GetCommitmentTxResponse
fn clone(&self) -> GetCommitmentTxResponse
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 GetCommitmentTxResponse
impl Debug for GetCommitmentTxResponse
Source§impl Default for GetCommitmentTxResponse
impl Default for GetCommitmentTxResponse
Source§fn default() -> GetCommitmentTxResponse
fn default() -> GetCommitmentTxResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetCommitmentTxResponse
impl<'de> Deserialize<'de> for GetCommitmentTxResponse
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 GetCommitmentTxResponse
impl PartialEq for GetCommitmentTxResponse
Source§fn eq(&self, other: &GetCommitmentTxResponse) -> bool
fn eq(&self, other: &GetCommitmentTxResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetCommitmentTxResponse
impl Serialize for GetCommitmentTxResponse
impl StructuralPartialEq for GetCommitmentTxResponse
Auto Trait Implementations§
impl Freeze for GetCommitmentTxResponse
impl RefUnwindSafe for GetCommitmentTxResponse
impl Send for GetCommitmentTxResponse
impl Sync for GetCommitmentTxResponse
impl Unpin for GetCommitmentTxResponse
impl UnsafeUnpin for GetCommitmentTxResponse
impl UnwindSafe for GetCommitmentTxResponse
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