pub struct AgentPoolStoreCursor {
pub sequence: u64,
}Expand description
Durable cursor for pool-scoped store records.
Cursors are scoped by the pool passed to watch and should not be
used as global event or journal cursors.
Fields§
§sequence: u64Monotonic sequence within a logical pool store partition.
Implementations§
Trait Implementations§
Source§impl Clone for AgentPoolStoreCursor
impl Clone for AgentPoolStoreCursor
Source§fn clone(&self) -> AgentPoolStoreCursor
fn clone(&self) -> AgentPoolStoreCursor
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 AgentPoolStoreCursor
impl Debug for AgentPoolStoreCursor
Source§impl<'de> Deserialize<'de> for AgentPoolStoreCursor
impl<'de> Deserialize<'de> for AgentPoolStoreCursor
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 AgentPoolStoreCursor
Source§impl PartialEq for AgentPoolStoreCursor
impl PartialEq for AgentPoolStoreCursor
Source§fn eq(&self, other: &AgentPoolStoreCursor) -> bool
fn eq(&self, other: &AgentPoolStoreCursor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentPoolStoreCursor
impl Serialize for AgentPoolStoreCursor
impl StructuralPartialEq for AgentPoolStoreCursor
Auto Trait Implementations§
impl Freeze for AgentPoolStoreCursor
impl RefUnwindSafe for AgentPoolStoreCursor
impl Send for AgentPoolStoreCursor
impl Sync for AgentPoolStoreCursor
impl Unpin for AgentPoolStoreCursor
impl UnsafeUnpin for AgentPoolStoreCursor
impl UnwindSafe for AgentPoolStoreCursor
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