pub enum GetUtxosError {
MalformedAddress,
MinConfirmationsTooLarge {
given: u32,
max: u32,
},
UnknownTipBlockHash {
tip_block_hash: BlockHash,
},
MalformedPage {
err: String,
},
}Expand description
Errors when processing a get_utxos request.
Variants§
Trait Implementations§
Source§impl CandidType for GetUtxosError
impl CandidType for GetUtxosError
Source§impl Clone for GetUtxosError
impl Clone for GetUtxosError
Source§fn clone(&self) -> GetUtxosError
fn clone(&self) -> GetUtxosError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetUtxosError
impl Debug for GetUtxosError
Source§impl<'de> Deserialize<'de> for GetUtxosError
impl<'de> Deserialize<'de> for GetUtxosError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for GetUtxosError
impl Display for GetUtxosError
Source§impl PartialEq for GetUtxosError
impl PartialEq for GetUtxosError
impl Eq for GetUtxosError
impl StructuralPartialEq for GetUtxosError
Auto Trait Implementations§
impl Freeze for GetUtxosError
impl RefUnwindSafe for GetUtxosError
impl Send for GetUtxosError
impl Sync for GetUtxosError
impl Unpin for GetUtxosError
impl UnwindSafe for GetUtxosError
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