pub enum Delivery<'p> {
Plain(PlainDelivery<'p>),
Single(SingleDelivery<'p>),
Group(GroupDelivery<'p>),
Link(LinkDelivery<'p>),
}Variants§
Plain(PlainDelivery<'p>)
Single(SingleDelivery<'p>)
Group(GroupDelivery<'p>)
Link(LinkDelivery<'p>)
Trait Implementations§
impl<'p> Copy for Delivery<'p>
impl<'p> Eq for Delivery<'p>
impl<'p> StructuralPartialEq for Delivery<'p>
Auto Trait Implementations§
impl<'p> Freeze for Delivery<'p>
impl<'p> RefUnwindSafe for Delivery<'p>
impl<'p> Send for Delivery<'p>
impl<'p> Sync for Delivery<'p>
impl<'p> Unpin for Delivery<'p>
impl<'p> UnsafeUnpin for Delivery<'p>
impl<'p> UnwindSafe for Delivery<'p>
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