pub enum RecordingStopReason {
ManualStop,
EnoughData,
IdleTimeout,
SessionEnded,
}Variants§
Trait Implementations§
Source§impl Clone for RecordingStopReason
impl Clone for RecordingStopReason
Source§fn clone(&self) -> RecordingStopReason
fn clone(&self) -> RecordingStopReason
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 moreimpl Copy for RecordingStopReason
Source§impl Debug for RecordingStopReason
impl Debug for RecordingStopReason
impl Eq for RecordingStopReason
Source§impl PartialEq for RecordingStopReason
impl PartialEq for RecordingStopReason
Source§fn eq(&self, other: &RecordingStopReason) -> bool
fn eq(&self, other: &RecordingStopReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordingStopReason
Auto Trait Implementations§
impl Freeze for RecordingStopReason
impl RefUnwindSafe for RecordingStopReason
impl Send for RecordingStopReason
impl Sync for RecordingStopReason
impl Unpin for RecordingStopReason
impl UnsafeUnpin for RecordingStopReason
impl UnwindSafe for RecordingStopReason
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