pub enum TxidFromStrError {
InvalidChar(u8),
InvalidLength {
expected: usize,
actual: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for TxidFromStrError
impl Clone for TxidFromStrError
Source§fn clone(&self) -> TxidFromStrError
fn clone(&self) -> TxidFromStrError
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 TxidFromStrError
impl Debug for TxidFromStrError
Source§impl Display for TxidFromStrError
impl Display for TxidFromStrError
Source§impl PartialEq for TxidFromStrError
impl PartialEq for TxidFromStrError
impl Eq for TxidFromStrError
impl StructuralPartialEq for TxidFromStrError
Auto Trait Implementations§
impl Freeze for TxidFromStrError
impl RefUnwindSafe for TxidFromStrError
impl Send for TxidFromStrError
impl Sync for TxidFromStrError
impl Unpin for TxidFromStrError
impl UnwindSafe for TxidFromStrError
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