pub enum NetpacketDelivery {
Unreliable,
Reliable,
Unsequenced,
}Variants§
Trait Implementations§
Source§impl Clone for NetpacketDelivery
impl Clone for NetpacketDelivery
Source§fn clone(&self) -> NetpacketDelivery
fn clone(&self) -> NetpacketDelivery
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 NetpacketDelivery
impl Debug for NetpacketDelivery
Source§impl Default for NetpacketDelivery
impl Default for NetpacketDelivery
Source§fn default() -> NetpacketDelivery
fn default() -> NetpacketDelivery
Returns the “default value” for a type. Read more
Source§impl Hash for NetpacketDelivery
impl Hash for NetpacketDelivery
Source§impl PartialEq for NetpacketDelivery
impl PartialEq for NetpacketDelivery
Source§fn eq(&self, other: &NetpacketDelivery) -> bool
fn eq(&self, other: &NetpacketDelivery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for NetpacketDelivery
impl Eq for NetpacketDelivery
impl StructuralPartialEq for NetpacketDelivery
Auto Trait Implementations§
impl Freeze for NetpacketDelivery
impl RefUnwindSafe for NetpacketDelivery
impl Send for NetpacketDelivery
impl Sync for NetpacketDelivery
impl Unpin for NetpacketDelivery
impl UnsafeUnpin for NetpacketDelivery
impl UnwindSafe for NetpacketDelivery
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