pub enum CalculateCnsFailure {
WrongInputParameterLength {
faulty_slice: &'static str,
expected_length: ExpectedLengthError,
actual_length: usize,
},
WrongInputParameterAlignment {
faulty_slice: &'static str,
},
ServiceFailure(PukclReturnCode),
}
Expand description
An error type representing failure modes for a
Pukcc::zp_calculate_cns
service
Variants§
WrongInputParameterLength
WrongInputParameterAlignment
Should be 4-aligned
ServiceFailure(PukclReturnCode)
Trait Implementations§
Source§impl Debug for CalculateCnsFailure
impl Debug for CalculateCnsFailure
Source§impl From<CalculateCnsFailure> for ExpModFailure
impl From<CalculateCnsFailure> for ExpModFailure
Source§fn from(f: CalculateCnsFailure) -> Self
fn from(f: CalculateCnsFailure) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CalculateCnsFailure
impl RefUnwindSafe for CalculateCnsFailure
impl Send for CalculateCnsFailure
impl Sync for CalculateCnsFailure
impl Unpin for CalculateCnsFailure
impl UnwindSafe for CalculateCnsFailure
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