pub struct FirstStreamableBlock {
pub height: i64,
pub id: String,
}
Expand description
First available block information
Fields§
§height: i64
Block height of the first streamable block. Can be different from genesis
id: String
Id of the first streamable block either in 0x-prefixed hex or base58
Trait Implementations§
Source§impl Clone for FirstStreamableBlock
impl Clone for FirstStreamableBlock
Source§fn clone(&self) -> FirstStreamableBlock
fn clone(&self) -> FirstStreamableBlock
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FirstStreamableBlock
impl Debug for FirstStreamableBlock
Source§impl<'de> Deserialize<'de> for FirstStreamableBlock
impl<'de> Deserialize<'de> for FirstStreamableBlock
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 FirstStreamableBlock
impl RefUnwindSafe for FirstStreamableBlock
impl Send for FirstStreamableBlock
impl Sync for FirstStreamableBlock
impl Unpin for FirstStreamableBlock
impl UnwindSafe for FirstStreamableBlock
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