#[non_exhaustive]pub enum TerminalLoadState {
Quiet,
}Expand description
Terminal load states supported by the SDK.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Quiet
No visible snapshot change has been observed for the configured quiet window.
Trait Implementations§
Source§impl Clone for TerminalLoadState
impl Clone for TerminalLoadState
Source§fn clone(&self) -> TerminalLoadState
fn clone(&self) -> TerminalLoadState
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 TerminalLoadState
Source§impl Debug for TerminalLoadState
impl Debug for TerminalLoadState
impl Eq for TerminalLoadState
Source§impl Hash for TerminalLoadState
impl Hash for TerminalLoadState
Source§impl PartialEq for TerminalLoadState
impl PartialEq for TerminalLoadState
Source§fn eq(&self, other: &TerminalLoadState) -> bool
fn eq(&self, other: &TerminalLoadState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TerminalLoadState
Auto Trait Implementations§
impl Freeze for TerminalLoadState
impl RefUnwindSafe for TerminalLoadState
impl Send for TerminalLoadState
impl Sync for TerminalLoadState
impl Unpin for TerminalLoadState
impl UnsafeUnpin for TerminalLoadState
impl UnwindSafe for TerminalLoadState
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