pub enum DebugConsoleType {
Off,
Pty,
Tty,
File(PathBuf),
}Variants§
Trait Implementations§
Source§impl Clone for DebugConsoleType
impl Clone for DebugConsoleType
Source§fn clone(&self) -> DebugConsoleType
fn clone(&self) -> DebugConsoleType
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 DebugConsoleType
impl Debug for DebugConsoleType
Source§impl<'de> Deserialize<'de> for DebugConsoleType
impl<'de> Deserialize<'de> for DebugConsoleType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DebugConsoleType
impl PartialEq for DebugConsoleType
Source§impl Serialize for DebugConsoleType
impl Serialize for DebugConsoleType
impl Eq for DebugConsoleType
impl StructuralPartialEq for DebugConsoleType
Auto Trait Implementations§
impl Freeze for DebugConsoleType
impl RefUnwindSafe for DebugConsoleType
impl Send for DebugConsoleType
impl Sync for DebugConsoleType
impl Unpin for DebugConsoleType
impl UnwindSafe for DebugConsoleType
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