pub enum IncomingOfferDelivery {
Presented,
SessionMissing,
SessionStale {
actual_generation: SessionGeneration,
},
CancelledBeforePresentation,
WriteFailed,
}Variants§
Presented
SessionMissing
SessionStale
Fields
§
actual_generation: SessionGenerationCancelledBeforePresentation
WriteFailed
Trait Implementations§
Source§impl Clone for IncomingOfferDelivery
impl Clone for IncomingOfferDelivery
Source§fn clone(&self) -> IncomingOfferDelivery
fn clone(&self) -> IncomingOfferDelivery
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 moreSource§impl Debug for IncomingOfferDelivery
impl Debug for IncomingOfferDelivery
impl Eq for IncomingOfferDelivery
Source§impl PartialEq for IncomingOfferDelivery
impl PartialEq for IncomingOfferDelivery
impl StructuralPartialEq for IncomingOfferDelivery
Auto Trait Implementations§
impl Freeze for IncomingOfferDelivery
impl RefUnwindSafe for IncomingOfferDelivery
impl Send for IncomingOfferDelivery
impl Sync for IncomingOfferDelivery
impl Unpin for IncomingOfferDelivery
impl UnsafeUnpin for IncomingOfferDelivery
impl UnwindSafe for IncomingOfferDelivery
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