pub struct LocatorState {
pub latest_occurrence_id: String,
pub latest_content_hash: ContentHash,
}Expand description
State of the latest event-path episode for a locator.
Fields§
§latest_occurrence_id: StringThe occurrence_id of the most recent episode for this locator.
latest_content_hash: ContentHashThe content hash of that episode.
Trait Implementations§
Source§impl Clone for LocatorState
impl Clone for LocatorState
Source§fn clone(&self) -> LocatorState
fn clone(&self) -> LocatorState
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 LocatorState
impl Debug for LocatorState
impl Eq for LocatorState
Source§impl PartialEq for LocatorState
impl PartialEq for LocatorState
impl StructuralPartialEq for LocatorState
Auto Trait Implementations§
impl Freeze for LocatorState
impl RefUnwindSafe for LocatorState
impl Send for LocatorState
impl Sync for LocatorState
impl Unpin for LocatorState
impl UnsafeUnpin for LocatorState
impl UnwindSafe for LocatorState
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