pub struct JournalStateCounts {
pub created: usize,
pub downloaded: usize,
pub checksum_verified: usize,
pub durable: usize,
pub download: usize,
pub verify_checksum: usize,
pub finalize: usize,
pub skip: usize,
}Expand description
JournalStateCounts
Fields§
§created: usize§downloaded: usize§checksum_verified: usize§durable: usize§download: usize§verify_checksum: usize§finalize: usize§skip: usizeTrait Implementations§
Source§impl Clone for JournalStateCounts
impl Clone for JournalStateCounts
Source§fn clone(&self) -> JournalStateCounts
fn clone(&self) -> JournalStateCounts
Returns a duplicate 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 Debug for JournalStateCounts
impl Debug for JournalStateCounts
Source§impl Default for JournalStateCounts
impl Default for JournalStateCounts
Source§fn default() -> JournalStateCounts
fn default() -> JournalStateCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JournalStateCounts
impl<'de> Deserialize<'de> for JournalStateCounts
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 JournalStateCounts
impl PartialEq for JournalStateCounts
Source§impl Serialize for JournalStateCounts
impl Serialize for JournalStateCounts
impl Eq for JournalStateCounts
impl StructuralPartialEq for JournalStateCounts
Auto Trait Implementations§
impl Freeze for JournalStateCounts
impl RefUnwindSafe for JournalStateCounts
impl Send for JournalStateCounts
impl Sync for JournalStateCounts
impl Unpin for JournalStateCounts
impl UnsafeUnpin for JournalStateCounts
impl UnwindSafe for JournalStateCounts
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