pub enum MintFencedAttachResult {
Minted(Box<MintedFencedAttach>),
MintRefused(Box<MintFencedAttachRefused>),
}Expand description
Complete result of the sole production fenced proof mint.
Variants§
Minted(Box<MintedFencedAttach>)
Exactly one marker authority was spent and one proof was minted.
MintRefused(Box<MintFencedAttachRefused>)
No proof was minted; the same authority and inputs are serially retryable.
Trait Implementations§
Source§impl Debug for MintFencedAttachResult
impl Debug for MintFencedAttachResult
impl Eq for MintFencedAttachResult
Source§impl PartialEq for MintFencedAttachResult
impl PartialEq for MintFencedAttachResult
impl StructuralPartialEq for MintFencedAttachResult
Auto Trait Implementations§
impl Freeze for MintFencedAttachResult
impl RefUnwindSafe for MintFencedAttachResult
impl Send for MintFencedAttachResult
impl Sync for MintFencedAttachResult
impl Unpin for MintFencedAttachResult
impl UnsafeUnpin for MintFencedAttachResult
impl UnwindSafe for MintFencedAttachResult
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