pub enum ControlEntry {
Counter(u64),
Policy(EffectiveCodecPolicy),
UiPreference(String),
MountEpoch(MountEpoch),
}Expand description
Control-store entry for operational state.
Variants§
Counter(u64)
Durable generated-name or scheduler counter.
Policy(EffectiveCodecPolicy)
Effective policy snapshot.
UiPreference(String)
UI preference kept out of authored source.
MountEpoch(MountEpoch)
Last observed mount backend epoch.
Trait Implementations§
Source§impl Clone for ControlEntry
impl Clone for ControlEntry
Source§fn clone(&self) -> ControlEntry
fn clone(&self) -> ControlEntry
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 ControlEntry
impl Debug for ControlEntry
impl Eq for ControlEntry
Source§impl PartialEq for ControlEntry
impl PartialEq for ControlEntry
impl StructuralPartialEq for ControlEntry
Auto Trait Implementations§
impl Freeze for ControlEntry
impl RefUnwindSafe for ControlEntry
impl Send for ControlEntry
impl Sync for ControlEntry
impl Unpin for ControlEntry
impl UnsafeUnpin for ControlEntry
impl UnwindSafe for ControlEntry
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