#[non_exhaustive]pub enum PersistentOutputStream {
Stdout,
Stderr,
}Expand description
Parent stream used for forwarding persistent output.
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.
Trait Implementations§
Source§impl Clone for PersistentOutputStream
impl Clone for PersistentOutputStream
Source§fn clone(&self) -> PersistentOutputStream
fn clone(&self) -> PersistentOutputStream
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 PersistentOutputStream
Source§impl Debug for PersistentOutputStream
impl Debug for PersistentOutputStream
impl Eq for PersistentOutputStream
Source§impl PartialEq for PersistentOutputStream
impl PartialEq for PersistentOutputStream
impl StructuralPartialEq for PersistentOutputStream
Auto Trait Implementations§
impl Freeze for PersistentOutputStream
impl RefUnwindSafe for PersistentOutputStream
impl Send for PersistentOutputStream
impl Sync for PersistentOutputStream
impl Unpin for PersistentOutputStream
impl UnsafeUnpin for PersistentOutputStream
impl UnwindSafe for PersistentOutputStream
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