pub enum FlushAction {
SendNew(String),
EditExisting(String),
}Expand description
Action to perform after flushing the stream buffer.
Variants§
Trait Implementations§
Source§impl Clone for FlushAction
impl Clone for FlushAction
Source§fn clone(&self) -> FlushAction
fn clone(&self) -> FlushAction
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 moreAuto Trait Implementations§
impl Freeze for FlushAction
impl RefUnwindSafe for FlushAction
impl Send for FlushAction
impl Sync for FlushAction
impl Unpin for FlushAction
impl UnsafeUnpin for FlushAction
impl UnwindSafe for FlushAction
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