pub enum StreamState {
Error(String),
Unconnected,
Connecting,
Paused,
Streaming,
}
Variants§
Trait Implementations§
Source§impl Debug for StreamState
impl Debug for StreamState
Source§impl PartialEq for StreamState
impl PartialEq for StreamState
impl StructuralPartialEq for StreamState
Auto Trait Implementations§
impl Freeze for StreamState
impl RefUnwindSafe for StreamState
impl Send for StreamState
impl Sync for StreamState
impl Unpin for StreamState
impl UnwindSafe for StreamState
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