pub enum BackendErr {
Stdio(StdioErr),
}Expand description
sea-streamer-socket the concrete backend error.
Variants§
Trait Implementations§
Source§impl Debug for BackendErr
impl Debug for BackendErr
Source§impl Display for BackendErr
impl Display for BackendErr
Source§impl Error for BackendErr
impl Error for BackendErr
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<StdioErr> for BackendErr
Available on crate feature backend-stdio only.
impl From<StdioErr> for BackendErr
Available on crate feature
backend-stdio only.Source§impl SeaStreamerBackend for BackendErr
impl SeaStreamerBackend for BackendErr
Auto Trait Implementations§
impl Freeze for BackendErr
impl !RefUnwindSafe for BackendErr
impl Send for BackendErr
impl Sync for BackendErr
impl Unpin for BackendErr
impl UnsafeUnpin for BackendErr
impl !UnwindSafe for BackendErr
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