pub struct OffsetCheckpoint3 {
pub value: Box<OffsetCheckpoint1>,
}
Expand description
OffsetCheckpoint3 : OffsetCheckpoints may be used to: - detect time out of commands. - provide an offset which can be used to restart consumption.
Fields§
§value: Box<OffsetCheckpoint1>
Implementations§
Source§impl OffsetCheckpoint3
impl OffsetCheckpoint3
Sourcepub fn new(value: OffsetCheckpoint1) -> OffsetCheckpoint3
pub fn new(value: OffsetCheckpoint1) -> OffsetCheckpoint3
OffsetCheckpoints may be used to: - detect time out of commands. - provide an offset which can be used to restart consumption.
Trait Implementations§
Source§impl Clone for OffsetCheckpoint3
impl Clone for OffsetCheckpoint3
Source§fn clone(&self) -> OffsetCheckpoint3
fn clone(&self) -> OffsetCheckpoint3
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 OffsetCheckpoint3
impl Debug for OffsetCheckpoint3
Source§impl Default for OffsetCheckpoint3
impl Default for OffsetCheckpoint3
Source§fn default() -> OffsetCheckpoint3
fn default() -> OffsetCheckpoint3
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OffsetCheckpoint3
impl<'de> Deserialize<'de> for OffsetCheckpoint3
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 OffsetCheckpoint3
impl PartialEq for OffsetCheckpoint3
Source§impl Serialize for OffsetCheckpoint3
impl Serialize for OffsetCheckpoint3
impl StructuralPartialEq for OffsetCheckpoint3
Auto Trait Implementations§
impl Freeze for OffsetCheckpoint3
impl RefUnwindSafe for OffsetCheckpoint3
impl Send for OffsetCheckpoint3
impl Sync for OffsetCheckpoint3
impl Unpin for OffsetCheckpoint3
impl UnwindSafe for OffsetCheckpoint3
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