pub enum ResolutionOutcome {
Delivered,
Expired,
NotFound,
}Expand description
Outcome of a late resolve_approval submission (SPEC §8.3).
Variants§
Trait Implementations§
Source§impl Clone for ResolutionOutcome
impl Clone for ResolutionOutcome
Source§fn clone(&self) -> ResolutionOutcome
fn clone(&self) -> ResolutionOutcome
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 ResolutionOutcome
Source§impl Debug for ResolutionOutcome
impl Debug for ResolutionOutcome
impl Eq for ResolutionOutcome
Source§impl From<ResolutionOutcome> for ApprovalOutcome
impl From<ResolutionOutcome> for ApprovalOutcome
Source§fn from(outcome: ResolutionOutcome) -> Self
fn from(outcome: ResolutionOutcome) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResolutionOutcome
impl PartialEq for ResolutionOutcome
impl StructuralPartialEq for ResolutionOutcome
Auto Trait Implementations§
impl Freeze for ResolutionOutcome
impl RefUnwindSafe for ResolutionOutcome
impl Send for ResolutionOutcome
impl Sync for ResolutionOutcome
impl Unpin for ResolutionOutcome
impl UnsafeUnpin for ResolutionOutcome
impl UnwindSafe for ResolutionOutcome
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