pub struct BlockLedger {
pub url: String,
pub index: u64,
pub time: String,
pub entries: BlockEntry,
}Fields§
§url: String§index: u64§time: String§entries: BlockEntryTrait Implementations§
Source§impl Clone for BlockLedger
impl Clone for BlockLedger
Source§fn clone(&self) -> BlockLedger
fn clone(&self) -> BlockLedger
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 BlockLedger
impl Debug for BlockLedger
Source§impl<'de> Deserialize<'de> for BlockLedger
impl<'de> Deserialize<'de> for BlockLedger
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 BlockLedger
impl PartialEq for BlockLedger
Source§impl Serialize for BlockLedger
impl Serialize for BlockLedger
impl StructuralPartialEq for BlockLedger
Auto Trait Implementations§
impl Freeze for BlockLedger
impl RefUnwindSafe for BlockLedger
impl Send for BlockLedger
impl Sync for BlockLedger
impl Unpin for BlockLedger
impl UnsafeUnpin for BlockLedger
impl UnwindSafe for BlockLedger
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