pub enum DeliveryGuarantee {
Unreliable,
Reliable,
}Expand description
Enum to specify how a packet should be delivered.
Variants§
Trait Implementations§
Source§impl Clone for DeliveryGuarantee
impl Clone for DeliveryGuarantee
Source§fn clone(&self) -> DeliveryGuarantee
fn clone(&self) -> DeliveryGuarantee
Returns a duplicate of the value. Read more
1.0.0 · 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 DeliveryGuarantee
impl Debug for DeliveryGuarantee
Source§impl EnumConverter for DeliveryGuarantee
impl EnumConverter for DeliveryGuarantee
Source§impl PartialEq for DeliveryGuarantee
impl PartialEq for DeliveryGuarantee
Source§impl PartialOrd for DeliveryGuarantee
impl PartialOrd for DeliveryGuarantee
Source§impl TryFrom<u8> for DeliveryGuarantee
impl TryFrom<u8> for DeliveryGuarantee
impl Copy for DeliveryGuarantee
impl Eq for DeliveryGuarantee
impl StructuralPartialEq for DeliveryGuarantee
Auto Trait Implementations§
impl Freeze for DeliveryGuarantee
impl RefUnwindSafe for DeliveryGuarantee
impl Send for DeliveryGuarantee
impl Sync for DeliveryGuarantee
impl Unpin for DeliveryGuarantee
impl UnwindSafe for DeliveryGuarantee
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