pub struct TreeTxEvent {
pub batch_index: Option<i32>,
pub children: Option<HashMap<String, String>>,
pub id: Option<String>,
pub topic: Option<Vec<String>>,
pub tx: Option<String>,
pub txid: Option<String>,
}Fields§
§batch_index: Option<i32>§children: Option<HashMap<String, String>>output index -> child txid
id: Option<String>§topic: Option<Vec<String>>§tx: Option<String>§txid: Option<String>Implementations§
Source§impl TreeTxEvent
impl TreeTxEvent
pub fn new() -> TreeTxEvent
Trait Implementations§
Source§impl Clone for TreeTxEvent
impl Clone for TreeTxEvent
Source§fn clone(&self) -> TreeTxEvent
fn clone(&self) -> TreeTxEvent
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 TreeTxEvent
impl Debug for TreeTxEvent
Source§impl Default for TreeTxEvent
impl Default for TreeTxEvent
Source§fn default() -> TreeTxEvent
fn default() -> TreeTxEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TreeTxEvent
impl<'de> Deserialize<'de> for TreeTxEvent
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 TreeTxEvent
impl PartialEq for TreeTxEvent
Source§fn eq(&self, other: &TreeTxEvent) -> bool
fn eq(&self, other: &TreeTxEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TreeTxEvent
impl Serialize for TreeTxEvent
impl StructuralPartialEq for TreeTxEvent
Source§impl TryFrom<TreeTxEvent> for TreeTxEvent
impl TryFrom<TreeTxEvent> for TreeTxEvent
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for TreeTxEvent
impl RefUnwindSafe for TreeTxEvent
impl Send for TreeTxEvent
impl Sync for TreeTxEvent
impl Unpin for TreeTxEvent
impl UnsafeUnpin for TreeTxEvent
impl UnwindSafe for TreeTxEvent
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