pub enum Sha256FromStrError {
InvalidLength(usize),
NonHexChar,
}Variants§
Trait Implementations§
Source§impl Debug for Sha256FromStrError
impl Debug for Sha256FromStrError
Source§impl Display for Sha256FromStrError
impl Display for Sha256FromStrError
Source§impl Error for Sha256FromStrError
impl Error for Sha256FromStrError
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 Sha256FromStrError
impl RefUnwindSafe for Sha256FromStrError
impl Send for Sha256FromStrError
impl Sync for Sha256FromStrError
impl Unpin for Sha256FromStrError
impl UnsafeUnpin for Sha256FromStrError
impl UnwindSafe for Sha256FromStrError
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