[][src]Struct bitcoincore_rpc_json::GetNetTotalsResultUploadTarget

pub struct GetNetTotalsResultUploadTarget {
    pub time_frame: u64,
    pub target: u64,
    pub target_reached: bool,
    pub serve_historical_blocks: bool,
    pub bytes_left_in_cycle: u64,
    pub time_left_in_cycle: u64,
}

Fields

time_frame: u64

Length of the measuring timeframe in seconds

target: u64

Target in bytes

target_reached: bool

True if target is reached

serve_historical_blocks: bool

True if serving historical blocks

bytes_left_in_cycle: u64

Bytes left in current time cycle

time_left_in_cycle: u64

Seconds left in current time cycle

Trait Implementations

impl Clone for GetNetTotalsResultUploadTarget[src]

impl Debug for GetNetTotalsResultUploadTarget[src]

impl<'de> Deserialize<'de> for GetNetTotalsResultUploadTarget[src]

impl Eq for GetNetTotalsResultUploadTarget[src]

impl PartialEq<GetNetTotalsResultUploadTarget> for GetNetTotalsResultUploadTarget[src]

impl Serialize for GetNetTotalsResultUploadTarget[src]

impl StructuralEq for GetNetTotalsResultUploadTarget[src]

impl StructuralPartialEq for GetNetTotalsResultUploadTarget[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.