Struct ckb_jsonrpc_types::EpochView
source · [−]pub struct EpochView {
pub number: EpochNumber,
pub start_number: BlockNumber,
pub length: BlockNumber,
pub compact_target: Uint32,
}Expand description
JSON view of an epoch.
CKB adjusts difficulty based on epochs.
Examples
{
"compact_target": "0x1e083126",
"length": "0x708",
"number": "0x1",
"start_number": "0x3e8"
}Fields
number: EpochNumberConsecutive epoch number starting from 0.
start_number: BlockNumberThe block number of the first block in the epoch.
It also equals the total count of blocks in all the epochs which epoch number is less than this epoch.
length: BlockNumberThe number of blocks in this epoch.
compact_target: Uint32The difficulty target for any block in this epoch.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for EpochView
impl<'de> Deserialize<'de> for EpochView
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
impl Eq for EpochView
impl StructuralEq for EpochView
impl StructuralPartialEq for EpochView
Auto Trait Implementations
impl RefUnwindSafe for EpochView
impl Send for EpochView
impl Sync for EpochView
impl Unpin for EpochView
impl UnwindSafe for EpochView
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more