pub enum UnusableFrame {
ChainLayout(ChainLayoutError),
Request(UnrecoverableDecodeError),
InsufficientResponse {
request_id: u64,
required: u64,
available: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for UnusableFrame
impl Clone for UnusableFrame
Source§fn clone(&self) -> UnusableFrame
fn clone(&self) -> UnusableFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for UnusableFrame
Source§impl Debug for UnusableFrame
impl Debug for UnusableFrame
impl Eq for UnusableFrame
Source§impl PartialEq for UnusableFrame
impl PartialEq for UnusableFrame
impl StructuralPartialEq for UnusableFrame
Auto Trait Implementations§
impl Freeze for UnusableFrame
impl RefUnwindSafe for UnusableFrame
impl Send for UnusableFrame
impl Sync for UnusableFrame
impl Unpin for UnusableFrame
impl UnsafeUnpin for UnusableFrame
impl UnwindSafe for UnusableFrame
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