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
sourceimpl Clone for GetNetTotalsResultUploadTarget
impl Clone for GetNetTotalsResultUploadTarget
sourcefn clone(&self) -> GetNetTotalsResultUploadTarget
fn clone(&self) -> GetNetTotalsResultUploadTarget
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'de> Deserialize<'de> for GetNetTotalsResultUploadTarget
impl<'de> Deserialize<'de> for GetNetTotalsResultUploadTarget
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
sourceimpl PartialEq<GetNetTotalsResultUploadTarget> for GetNetTotalsResultUploadTarget
impl PartialEq<GetNetTotalsResultUploadTarget> for GetNetTotalsResultUploadTarget
sourcefn 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 ==
. Read more
impl Eq for GetNetTotalsResultUploadTarget
impl StructuralEq for GetNetTotalsResultUploadTarget
impl StructuralPartialEq for GetNetTotalsResultUploadTarget
Auto Trait Implementations
impl RefUnwindSafe for GetNetTotalsResultUploadTarget
impl Send for GetNetTotalsResultUploadTarget
impl Sync for GetNetTotalsResultUploadTarget
impl Unpin for GetNetTotalsResultUploadTarget
impl UnwindSafe for GetNetTotalsResultUploadTarget
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