pub enum ShellState {
Recording,
Saving,
}Expand description
The recording lifecycle a native indicator shows.
Two states, not six. An indicator the size of a menu-bar item has room for “this is running” and “this is finishing”, and a reader watching one wants exactly that distinction; the full state model belongs to the surface that has room to render it.
Variants§
Trait Implementations§
Source§impl Clone for ShellState
impl Clone for ShellState
Source§fn clone(&self) -> ShellState
fn clone(&self) -> ShellState
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 ShellState
Source§impl Debug for ShellState
impl Debug for ShellState
impl Eq for ShellState
Source§impl PartialEq for ShellState
impl PartialEq for ShellState
impl StructuralPartialEq for ShellState
Auto Trait Implementations§
impl Freeze for ShellState
impl RefUnwindSafe for ShellState
impl Send for ShellState
impl Sync for ShellState
impl Unpin for ShellState
impl UnsafeUnpin for ShellState
impl UnwindSafe for ShellState
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