pub enum TogetherError {
Io(Error),
Yaml(Error),
TomlSerialize(Error),
TomlDeserialize(Error),
ChannelRecvError(RecvError),
PopenErrorError(PopenError),
InternalError(TogetherInternalError),
DynError(Box<dyn Error>),
}Variants§
Io(Error)
Yaml(Error)
TomlSerialize(Error)
TomlDeserialize(Error)
ChannelRecvError(RecvError)
PopenErrorError(PopenError)
InternalError(TogetherInternalError)
DynError(Box<dyn Error>)
Trait Implementations§
Source§impl Debug for TogetherError
impl Debug for TogetherError
Source§impl Display for TogetherError
impl Display for TogetherError
Source§impl Error for TogetherError
impl Error for TogetherError
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<Error> for TogetherError
impl From<Error> for TogetherError
Source§impl From<Error> for TogetherError
impl From<Error> for TogetherError
Source§impl From<Error> for TogetherError
impl From<Error> for TogetherError
Source§impl From<Error> for TogetherError
impl From<Error> for TogetherError
Source§impl From<PopenError> for TogetherError
impl From<PopenError> for TogetherError
Source§fn from(e: PopenError) -> Self
fn from(e: PopenError) -> Self
Converts to this type from the input type.
Source§impl From<RecvError> for TogetherError
impl From<RecvError> for TogetherError
Source§impl From<TogetherInternalError> for TogetherError
impl From<TogetherInternalError> for TogetherError
Source§fn from(e: TogetherInternalError) -> Self
fn from(e: TogetherInternalError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TogetherError
impl !RefUnwindSafe for TogetherError
impl !Send for TogetherError
impl !Sync for TogetherError
impl Unpin for TogetherError
impl !UnwindSafe for TogetherError
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