pub struct TxWithCells {
pub tx_hash: H256,
pub block_number: BlockNumber,
pub tx_index: Uint32,
pub cells: Vec<(CellType, Uint32)>,
}Fields§
§tx_hash: H256§block_number: BlockNumber§tx_index: Uint32§cells: Vec<(CellType, Uint32)>Trait Implementations§
Source§impl Clone for TxWithCells
impl Clone for TxWithCells
Source§fn clone(&self) -> TxWithCells
fn clone(&self) -> TxWithCells
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 moreSource§impl Debug for TxWithCells
impl Debug for TxWithCells
Source§impl<'de> Deserialize<'de> for TxWithCells
impl<'de> Deserialize<'de> for TxWithCells
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
Auto Trait Implementations§
impl Freeze for TxWithCells
impl RefUnwindSafe for TxWithCells
impl Send for TxWithCells
impl Sync for TxWithCells
impl Unpin for TxWithCells
impl UnwindSafe for TxWithCells
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