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§
source§impl Clone for GetNetTotalsResultUploadTarget
impl Clone for GetNetTotalsResultUploadTarget
source§fn clone(&self) -> GetNetTotalsResultUploadTarget
fn clone(&self) -> GetNetTotalsResultUploadTarget
Returns a copy 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<'de> Deserialize<'de> for GetNetTotalsResultUploadTarget
impl<'de> Deserialize<'de> for GetNetTotalsResultUploadTarget
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 GetNetTotalsResultUploadTarget
impl PartialEq for GetNetTotalsResultUploadTarget
source§fn eq(&self, other: &GetNetTotalsResultUploadTarget) -> bool
fn eq(&self, other: &GetNetTotalsResultUploadTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for GetNetTotalsResultUploadTarget
impl StructuralPartialEq for GetNetTotalsResultUploadTarget
Auto Trait Implementations§
impl Freeze for GetNetTotalsResultUploadTarget
impl RefUnwindSafe for GetNetTotalsResultUploadTarget
impl Send for GetNetTotalsResultUploadTarget
impl Sync for GetNetTotalsResultUploadTarget
impl Unpin for GetNetTotalsResultUploadTarget
impl UnwindSafe for GetNetTotalsResultUploadTarget
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