pub enum NotPromoted {
Refused(Refusal),
Unverifiable(String),
}Expand description
Why a promotion did not happen.
Variants§
Refused(Refusal)
The gate would not mint a token from the run’s evidence.
Unverifiable(String)
The record and the commit disagree, or the commit is not there.
Trait Implementations§
Source§impl Debug for NotPromoted
impl Debug for NotPromoted
Auto Trait Implementations§
impl Freeze for NotPromoted
impl RefUnwindSafe for NotPromoted
impl Send for NotPromoted
impl Sync for NotPromoted
impl Unpin for NotPromoted
impl UnsafeUnpin for NotPromoted
impl UnwindSafe for NotPromoted
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