pub enum SocketToAssociation {
OneToOne,
OneToMany,
}
Expand description
SocketToAssociation: One-to-Many or One-to-One style Socket
Variants§
OneToOne
One Association per Socket (TCP Style Socket.)
OneToMany
Many Associations per Socket (UDP Style Socket.)
Trait Implementations§
Source§impl Clone for SocketToAssociation
impl Clone for SocketToAssociation
Source§fn clone(&self) -> SocketToAssociation
fn clone(&self) -> SocketToAssociation
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 SocketToAssociation
impl Debug for SocketToAssociation
Source§impl PartialEq for SocketToAssociation
impl PartialEq for SocketToAssociation
impl Eq for SocketToAssociation
impl StructuralPartialEq for SocketToAssociation
Auto Trait Implementations§
impl Freeze for SocketToAssociation
impl RefUnwindSafe for SocketToAssociation
impl Send for SocketToAssociation
impl Sync for SocketToAssociation
impl Unpin for SocketToAssociation
impl UnwindSafe for SocketToAssociation
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