pub struct ListSinceBlockResult {
pub transactions: Vec<ListTransactionResult>,
pub removed: Vec<ListTransactionResult>,
pub lastblock: BlockHash,
}
Fields
transactions: Vec<ListTransactionResult>
removed: Vec<ListTransactionResult>
lastblock: BlockHash
Trait Implementations
sourceimpl Clone for ListSinceBlockResult
impl Clone for ListSinceBlockResult
sourcefn clone(&self) -> ListSinceBlockResult
fn clone(&self) -> ListSinceBlockResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ListSinceBlockResult
impl Debug for ListSinceBlockResult
sourceimpl<'de> Deserialize<'de> for ListSinceBlockResult
impl<'de> Deserialize<'de> for ListSinceBlockResult
sourcefn 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
sourceimpl PartialEq<ListSinceBlockResult> for ListSinceBlockResult
impl PartialEq<ListSinceBlockResult> for ListSinceBlockResult
sourcefn eq(&self, other: &ListSinceBlockResult) -> bool
fn eq(&self, other: &ListSinceBlockResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for ListSinceBlockResult
impl StructuralEq for ListSinceBlockResult
impl StructuralPartialEq for ListSinceBlockResult
Auto Trait Implementations
impl RefUnwindSafe for ListSinceBlockResult
impl Send for ListSinceBlockResult
impl Sync for ListSinceBlockResult
impl Unpin for ListSinceBlockResult
impl UnwindSafe for ListSinceBlockResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more