pub enum CiEventError {
WithoutNamespace(String, RefUpdate),
WithoutNamespace2(String),
RefString(String, Error),
ReadFile(PathBuf, Error),
NotUtf8(PathBuf, FromUtf8Error),
NotJson(PathBuf, Error),
}
Variants§
WithoutNamespace(String, RefUpdate)
WithoutNamespace2(String)
RefString(String, Error)
ReadFile(PathBuf, Error)
NotUtf8(PathBuf, FromUtf8Error)
NotJson(PathBuf, Error)
Trait Implementations§
Source§impl Debug for CiEventError
impl Debug for CiEventError
Source§impl Display for CiEventError
impl Display for CiEventError
Source§impl Error for CiEventError
impl Error for CiEventError
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 CiEventError
impl !RefUnwindSafe for CiEventError
impl Send for CiEventError
impl Sync for CiEventError
impl Unpin for CiEventError
impl !UnwindSafe for CiEventError
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