pub enum MissingExunitError {
Key(RedeemerTag, usize, String),
}Expand description
Possible errors during conversion from bytes
Variants§
Key(RedeemerTag, usize, String)
Trait Implementations§
Source§impl Debug for MissingExunitError
impl Debug for MissingExunitError
Source§impl Display for MissingExunitError
impl Display for MissingExunitError
Source§impl Error for MissingExunitError
impl Error for MissingExunitError
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()
Source§impl From<MissingExunitError> for RedeemerBuilderError
impl From<MissingExunitError> for RedeemerBuilderError
Source§fn from(source: MissingExunitError) -> Self
fn from(source: MissingExunitError) -> Self
Converts to this type from the input type.
Source§impl From<MissingExunitError> for WitnessBuilderError
impl From<MissingExunitError> for WitnessBuilderError
Source§fn from(source: MissingExunitError) -> Self
fn from(source: MissingExunitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MissingExunitError
impl RefUnwindSafe for MissingExunitError
impl Send for MissingExunitError
impl Sync for MissingExunitError
impl Unpin for MissingExunitError
impl UnsafeUnpin for MissingExunitError
impl UnwindSafe for MissingExunitError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more