Enum libzeropool_rs::client::CreateTxError
source · [−]pub enum CreateTxError {
TooManyOutputs {
max: usize,
got: usize,
},
ProofNotFound(u64),
AddressParseError(AddressParseError),
InsufficientBalance(String, String),
InsufficientEnergy(String, String),
}
Variants
TooManyOutputs
ProofNotFound(u64)
AddressParseError(AddressParseError)
InsufficientBalance(String, String)
InsufficientEnergy(String, String)
Trait Implementations
sourceimpl Debug for CreateTxError
impl Debug for CreateTxError
sourceimpl Display for CreateTxError
impl Display for CreateTxError
sourceimpl Error for CreateTxError
impl Error for CreateTxError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<AddressParseError> for CreateTxError
impl From<AddressParseError> for CreateTxError
sourcefn from(source: AddressParseError) -> Self
fn from(source: AddressParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for CreateTxError
impl Send for CreateTxError
impl Sync for CreateTxError
impl Unpin for CreateTxError
impl !UnwindSafe for CreateTxError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more