pub struct DescribeQuorumReplicaState {
pub replica_id: i32,
pub replica_directory_id: Option<[u8; 16]>,
pub log_end_offset: i64,
pub last_fetch_timestamp: Option<i64>,
pub last_caught_up_timestamp: Option<i64>,
}Expand description
Replica state returned by DescribeQuorum.
Fields§
§replica_id: i32§replica_directory_id: Option<[u8; 16]>§log_end_offset: i64§last_fetch_timestamp: Option<i64>§last_caught_up_timestamp: Option<i64>Trait Implementations§
Source§impl Clone for DescribeQuorumReplicaState
impl Clone for DescribeQuorumReplicaState
Source§fn clone(&self) -> DescribeQuorumReplicaState
fn clone(&self) -> DescribeQuorumReplicaState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DescribeQuorumReplicaState
impl Debug for DescribeQuorumReplicaState
impl Eq for DescribeQuorumReplicaState
impl StructuralPartialEq for DescribeQuorumReplicaState
Auto Trait Implementations§
impl Freeze for DescribeQuorumReplicaState
impl RefUnwindSafe for DescribeQuorumReplicaState
impl Send for DescribeQuorumReplicaState
impl Sync for DescribeQuorumReplicaState
impl Unpin for DescribeQuorumReplicaState
impl UnsafeUnpin for DescribeQuorumReplicaState
impl UnwindSafe for DescribeQuorumReplicaState
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