pub enum StreamMode {
Live,
Replay,
LiveReplay,
}
Variantsยง
Live
Streaming from a file at the end
Replay
Replaying a dead file
LiveReplay
Replaying a live file, might catch up to live
Trait Implementationsยง
Sourceยงimpl Clone for StreamMode
impl Clone for StreamMode
Sourceยงfn clone(&self) -> StreamMode
fn clone(&self) -> StreamMode
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 StreamMode
impl Debug for StreamMode
Sourceยงimpl PartialEq for StreamMode
impl PartialEq for StreamMode
impl Copy for StreamMode
impl Eq for StreamMode
impl StructuralPartialEq for StreamMode
Auto Trait Implementationsยง
impl Freeze for StreamMode
impl RefUnwindSafe for StreamMode
impl Send for StreamMode
impl Sync for StreamMode
impl Unpin for StreamMode
impl UnwindSafe for StreamMode
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