pub enum StdioError {
UnknownSystem(String),
UnknownParameter(String),
MissingParameter(&'static str),
InvalidParameter(&'static str),
}Variants§
UnknownSystem(String)
UnknownParameter(String)
MissingParameter(&'static str)
InvalidParameter(&'static str)
Trait Implementations§
Source§impl Clone for StdioError
impl Clone for StdioError
Source§fn clone(&self) -> StdioError
fn clone(&self) -> StdioError
Returns a copy 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 StdioError
impl Debug for StdioError
Source§impl Display for StdioError
impl Display for StdioError
Source§impl Error for StdioError
impl Error for StdioError
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()
Auto Trait Implementations§
impl Freeze for StdioError
impl RefUnwindSafe for StdioError
impl Send for StdioError
impl Sync for StdioError
impl Unpin for StdioError
impl UnwindSafe for StdioError
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