pub enum RecordingEvent {
Started,
Finished,
Failed(String),
}Expand description
Recording lifecycle event
Variants§
Started
Recording started successfully
Finished
Recording finished successfully
Failed(String)
Recording failed with an error
Trait Implementations§
Source§impl Clone for RecordingEvent
impl Clone for RecordingEvent
Source§fn clone(&self) -> RecordingEvent
fn clone(&self) -> RecordingEvent
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 RecordingEvent
impl Debug for RecordingEvent
Source§impl PartialEq for RecordingEvent
impl PartialEq for RecordingEvent
impl Eq for RecordingEvent
impl StructuralPartialEq for RecordingEvent
Auto Trait Implementations§
impl Freeze for RecordingEvent
impl RefUnwindSafe for RecordingEvent
impl Send for RecordingEvent
impl Sync for RecordingEvent
impl Unpin for RecordingEvent
impl UnwindSafe for RecordingEvent
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