pub enum ProofIngest {
SendSinglePacketDelivered {
id: CommandId,
delivered: PacketReceiptDelivered,
},
SendToLinkDelivered {
id: CommandId,
delivered: PacketReceiptDelivered,
},
SendToChannelDelivered {
id: CommandId,
delivered: PacketReceiptDelivered,
},
Ignored,
}Variants§
Trait Implementations§
Source§impl Clone for ProofIngest
impl Clone for ProofIngest
Source§fn clone(&self) -> ProofIngest
fn clone(&self) -> ProofIngest
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 ProofIngest
Source§impl Debug for ProofIngest
impl Debug for ProofIngest
impl Eq for ProofIngest
Source§impl PartialEq for ProofIngest
impl PartialEq for ProofIngest
impl StructuralPartialEq for ProofIngest
Auto Trait Implementations§
impl Freeze for ProofIngest
impl RefUnwindSafe for ProofIngest
impl Send for ProofIngest
impl Sync for ProofIngest
impl Unpin for ProofIngest
impl UnsafeUnpin for ProofIngest
impl UnwindSafe for ProofIngest
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