pub enum LinuxSignError {
Subprocess(SubprocessError),
SigningFailed {
path: PathBuf,
detail: String,
},
ToolNotFound(String),
Io(Error),
}Variants§
Trait Implementations§
Source§impl Debug for LinuxSignError
impl Debug for LinuxSignError
Source§impl Display for LinuxSignError
impl Display for LinuxSignError
Source§impl Error for LinuxSignError
impl Error for LinuxSignError
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 LinuxSignError
impl From<Error> for LinuxSignError
Source§impl From<SubprocessError> for LinuxSignError
impl From<SubprocessError> for LinuxSignError
Source§fn from(source: SubprocessError) -> Self
fn from(source: SubprocessError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinuxSignError
impl !RefUnwindSafe for LinuxSignError
impl Send for LinuxSignError
impl Sync for LinuxSignError
impl Unpin for LinuxSignError
impl UnsafeUnpin for LinuxSignError
impl !UnwindSafe for LinuxSignError
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