pub enum SubscribeLocation {
None,
Absolute(u64),
Latest(u64),
Future(u64),
}
Expand description
Signal where the subscription should begin, relative to the current cache.
Variants§
Trait Implementations§
Source§impl Clone for SubscribeLocation
impl Clone for SubscribeLocation
Source§fn clone(&self) -> SubscribeLocation
fn clone(&self) -> SubscribeLocation
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 SubscribeLocation
impl Debug for SubscribeLocation
Source§impl Decode for SubscribeLocation
impl Decode for SubscribeLocation
Source§impl Encode for SubscribeLocation
impl Encode for SubscribeLocation
Source§impl PartialEq for SubscribeLocation
impl PartialEq for SubscribeLocation
impl StructuralPartialEq for SubscribeLocation
Auto Trait Implementations§
impl Freeze for SubscribeLocation
impl RefUnwindSafe for SubscribeLocation
impl Send for SubscribeLocation
impl Sync for SubscribeLocation
impl Unpin for SubscribeLocation
impl UnwindSafe for SubscribeLocation
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