Struct pulsar_admin_sdk::models::persistent_topic_internal_stats::PersistentTopicInternalStats
source · 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 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 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
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PersistentTopicInternalStats
Auto Trait Implementations§
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