pub enum DnsRequest {
Default(DnsConfig, String, Sender<IpAddr>),
SipNaptr(DnsConfig, String, String, Sender<(String, u16)>),
}
Variants§
Default(DnsConfig, String, Sender<IpAddr>)
SipNaptr(DnsConfig, String, String, Sender<(String, u16)>)
Auto Trait Implementations§
impl Freeze for DnsRequest
impl RefUnwindSafe for DnsRequest
impl Send for DnsRequest
impl Sync for DnsRequest
impl Unpin for DnsRequest
impl UnwindSafe for DnsRequest
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