pub enum AwareDataPlan {
Dial {
addr: Ipv6Addr,
scope: u32,
port: u16,
},
Listen {
addr: Ipv6Addr,
scope: u32,
port: u16,
},
}Variants§
Trait Implementations§
Source§impl Clone for AwareDataPlan
impl Clone for AwareDataPlan
Source§fn clone(&self) -> AwareDataPlan
fn clone(&self) -> AwareDataPlan
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 AwareDataPlan
Source§impl Debug for AwareDataPlan
impl Debug for AwareDataPlan
impl Eq for AwareDataPlan
Source§impl PartialEq for AwareDataPlan
impl PartialEq for AwareDataPlan
impl StructuralPartialEq for AwareDataPlan
Auto Trait Implementations§
impl Freeze for AwareDataPlan
impl RefUnwindSafe for AwareDataPlan
impl Send for AwareDataPlan
impl Sync for AwareDataPlan
impl Unpin for AwareDataPlan
impl UnsafeUnpin for AwareDataPlan
impl UnwindSafe for AwareDataPlan
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