pub struct PersistentTopicInternalStats {Show 15 fields
pub compacted_ledger: Option<Box<LedgerInfo>>,
pub current_ledger_entries: Option<i64>,
pub current_ledger_size: Option<i64>,
pub cursors: Option<HashMap<String, CursorStats>>,
pub entries_added_counter: Option<i64>,
pub last_confirmed_entry: Option<String>,
pub last_ledger_created_timestamp: Option<String>,
pub last_ledger_creation_failure_timestamp: Option<String>,
pub ledgers: Option<Vec<LedgerInfo>>,
pub number_of_entries: Option<i64>,
pub pending_add_entries_count: Option<i32>,
pub schema_ledgers: Option<Vec<LedgerInfo>>,
pub state: Option<String>,
pub total_size: Option<i64>,
pub waiting_cursors_count: Option<i32>,
}Fields§
§compacted_ledger: Option<Box<LedgerInfo>>§current_ledger_entries: Option<i64>§current_ledger_size: Option<i64>§cursors: Option<HashMap<String, CursorStats>>§entries_added_counter: Option<i64>§last_confirmed_entry: Option<String>§last_ledger_created_timestamp: Option<String>§last_ledger_creation_failure_timestamp: Option<String>§ledgers: Option<Vec<LedgerInfo>>§number_of_entries: Option<i64>§pending_add_entries_count: Option<i32>§schema_ledgers: Option<Vec<LedgerInfo>>§state: Option<String>§total_size: Option<i64>§waiting_cursors_count: Option<i32>Implementations§
Source§impl PersistentTopicInternalStats
impl PersistentTopicInternalStats
pub fn new() -> PersistentTopicInternalStats
Trait Implementations§
Source§impl Clone for PersistentTopicInternalStats
impl Clone for PersistentTopicInternalStats
Source§fn clone(&self) -> PersistentTopicInternalStats
fn clone(&self) -> PersistentTopicInternalStats
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 PersistentTopicInternalStats
impl Debug for PersistentTopicInternalStats
Source§impl Default for PersistentTopicInternalStats
impl Default for PersistentTopicInternalStats
Source§fn default() -> PersistentTopicInternalStats
fn default() -> PersistentTopicInternalStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PersistentTopicInternalStats
impl<'de> Deserialize<'de> for PersistentTopicInternalStats
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 PersistentTopicInternalStats
impl PartialEq for PersistentTopicInternalStats
Source§fn eq(&self, other: &PersistentTopicInternalStats) -> bool
fn eq(&self, other: &PersistentTopicInternalStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PersistentTopicInternalStats
Auto Trait Implementations§
impl Freeze for PersistentTopicInternalStats
impl RefUnwindSafe for PersistentTopicInternalStats
impl Send for PersistentTopicInternalStats
impl Sync for PersistentTopicInternalStats
impl Unpin for PersistentTopicInternalStats
impl UnwindSafe for PersistentTopicInternalStats
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