pub enum UpgradeResult {
Upgraded,
Pending,
Failed(Error),
}Expand description
Result of attempting to upgrade a pending attestation.
Variants§
Upgraded
The attestation has been successfully upgraded.
Pending
The attestation is still pending and not ready to be upgraded.
Failed(Error)
The attestation upgrade failed due to an error.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UpgradeResult
impl !RefUnwindSafe for UpgradeResult
impl Send for UpgradeResult
impl Sync for UpgradeResult
impl Unpin for UpgradeResult
impl UnsafeUnpin for UpgradeResult
impl !UnwindSafe for UpgradeResult
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