pub enum RecorderMode {
Permissive,
Strict,
}Expand description
Recorder construction mode.
Variants§
Permissive
Silently skip untracked buffers. Acceptable for low-level helpers during the migration window; not safe for production migrated paths.
Strict
Reject untracked buffers. Production migrated paths use this so silent skips become loud failures.
Trait Implementations§
Source§impl Clone for RecorderMode
impl Clone for RecorderMode
Source§fn clone(&self) -> RecorderMode
fn clone(&self) -> RecorderMode
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 RecorderMode
impl Debug for RecorderMode
Source§impl PartialEq for RecorderMode
impl PartialEq for RecorderMode
impl Copy for RecorderMode
impl Eq for RecorderMode
impl StructuralPartialEq for RecorderMode
Auto Trait Implementations§
impl Freeze for RecorderMode
impl RefUnwindSafe for RecorderMode
impl Send for RecorderMode
impl Sync for RecorderMode
impl Unpin for RecorderMode
impl UnsafeUnpin for RecorderMode
impl UnwindSafe for RecorderMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more