pub struct ReplicaCursor {
pub replica_id: String,
pub applied_lsn: u64,
pub updated_unix_secs: u64,
pub active: bool,
}Fields§
§replica_id: String§applied_lsn: u64§updated_unix_secs: u64§active: boolImplementations§
Trait Implementations§
Source§impl Clone for ReplicaCursor
impl Clone for ReplicaCursor
Source§fn clone(&self) -> ReplicaCursor
fn clone(&self) -> ReplicaCursor
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 ReplicaCursor
impl Debug for ReplicaCursor
Source§impl<'de> Deserialize<'de> for ReplicaCursor
impl<'de> Deserialize<'de> for ReplicaCursor
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
impl Eq for ReplicaCursor
Source§impl PartialEq for ReplicaCursor
impl PartialEq for ReplicaCursor
Source§impl Serialize for ReplicaCursor
impl Serialize for ReplicaCursor
impl StructuralPartialEq for ReplicaCursor
Auto Trait Implementations§
impl Freeze for ReplicaCursor
impl RefUnwindSafe for ReplicaCursor
impl Send for ReplicaCursor
impl Sync for ReplicaCursor
impl Unpin for ReplicaCursor
impl UnsafeUnpin for ReplicaCursor
impl UnwindSafe for ReplicaCursor
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