#[repr(C)]pub enum PamojaDelivery {
Sent = 0,
Buffered = 1,
}Expand description
What became of a message handed to a ladder.
Variants§
Sent = 0
A rung took the message and it is on its way.
Buffered = 1
No rung would take it, so it is in the buffer awaiting a flush.
Trait Implementations§
Source§impl Clone for PamojaDelivery
impl Clone for PamojaDelivery
Source§fn clone(&self) -> PamojaDelivery
fn clone(&self) -> PamojaDelivery
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 PamojaDelivery
Source§impl Debug for PamojaDelivery
impl Debug for PamojaDelivery
impl Eq for PamojaDelivery
Source§impl PartialEq for PamojaDelivery
impl PartialEq for PamojaDelivery
Source§fn eq(&self, other: &PamojaDelivery) -> bool
fn eq(&self, other: &PamojaDelivery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PamojaDelivery
Auto Trait Implementations§
impl Freeze for PamojaDelivery
impl RefUnwindSafe for PamojaDelivery
impl Send for PamojaDelivery
impl Sync for PamojaDelivery
impl Unpin for PamojaDelivery
impl UnsafeUnpin for PamojaDelivery
impl UnwindSafe for PamojaDelivery
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