pub enum OutputCategory {
Console,
Stdout,
Stderr,
LogPoint,
}Expand description
Category for DebugEvent::Output.
Variants§
Trait Implementations§
Source§impl Clone for OutputCategory
impl Clone for OutputCategory
Source§fn clone(&self) -> OutputCategory
fn clone(&self) -> OutputCategory
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 OutputCategory
impl Debug for OutputCategory
Source§impl PartialEq for OutputCategory
impl PartialEq for OutputCategory
impl Eq for OutputCategory
impl StructuralPartialEq for OutputCategory
Auto Trait Implementations§
impl Freeze for OutputCategory
impl RefUnwindSafe for OutputCategory
impl Send for OutputCategory
impl Sync for OutputCategory
impl Unpin for OutputCategory
impl UnsafeUnpin for OutputCategory
impl UnwindSafe for OutputCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more