Struct trust_dns_proto::xfer::DnsExchange [−][src]
pub struct DnsExchange { /* fields omitted */ }
Expand description
This is a generic Exchange implemented over multiplexed DNS connection providers.
The underlying DnsRequestSender
is expected to multiplex any I/O connections. DnsExchange assumes that the underlying stream is responsible for this.
Implementations
pub fn from_stream<S, TE>(stream: S) -> (Self, DnsExchangeBackground<S, TE>) where
S: DnsRequestSender + 'static + Send + Unpin,
pub fn from_stream<S, TE>(stream: S) -> (Self, DnsExchangeBackground<S, TE>) where
S: DnsRequestSender + 'static + Send + Unpin,
Initializes a TcpStream with an existing tcp::TcpStream.
This is intended for use with a TcpListener and Incoming.
Arguments
stream
- the established IO stream for communication
pub fn from_stream_with_receiver<S, TE>(
stream: S,
receiver: Receiver<OneshotDnsRequest>,
sender: BufDnsRequestStreamHandle
) -> (Self, DnsExchangeBackground<S, TE>) where
S: DnsRequestSender + 'static + Send + Unpin,
pub fn from_stream_with_receiver<S, TE>(
stream: S,
receiver: Receiver<OneshotDnsRequest>,
sender: BufDnsRequestStreamHandle
) -> (Self, DnsExchangeBackground<S, TE>) where
S: DnsRequestSender + 'static + Send + Unpin,
Wraps a stream where a sender and receiver have already been established
pub fn connect<F, S, TE>(connect_future: F) -> DnsExchangeConnect<F, S, TE>ⓘNotable traits for DnsExchangeConnect<F, S, TE>impl<F, S, TE> Future for DnsExchangeConnect<F, S, TE> where
F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin,
S: DnsRequestSender + 'static + Send + Unpin,
TE: Time + Unpin, type Output = Result<(DnsExchange, DnsExchangeBackground<S, TE>), ProtoError>;
where
F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin,
S: DnsRequestSender + 'static + Send + Unpin,
TE: Time + Unpin,
pub fn connect<F, S, TE>(connect_future: F) -> DnsExchangeConnect<F, S, TE>ⓘNotable traits for DnsExchangeConnect<F, S, TE>impl<F, S, TE> Future for DnsExchangeConnect<F, S, TE> where
F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin,
S: DnsRequestSender + 'static + Send + Unpin,
TE: Time + Unpin, type Output = Result<(DnsExchange, DnsExchangeBackground<S, TE>), ProtoError>;
where
F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin,
S: DnsRequestSender + 'static + Send + Unpin,
TE: Time + Unpin,
impl<F, S, TE> Future for DnsExchangeConnect<F, S, TE> where
F: Future<Output = Result<S, ProtoError>> + 'static + Send + Unpin,
S: DnsRequestSender + 'static + Send + Unpin,
TE: Time + Unpin, type Output = Result<(DnsExchange, DnsExchangeBackground<S, TE>), ProtoError>;
Returns a future, which itself wraps a future which is awaiting connection.
The connect_future should be lazy.
Trait Implementations
type Response = DnsExchangeSend
type Response = DnsExchangeSend
The associated response from the response stream, this should resolve to the Response messages
type Error = ProtoError
type Error = ProtoError
Error of the response, generally this will be ProtoError
Send a message via the channel in the client Read more
Only returns true if and only if this DNS handle is validating DNSSec. Read more
Allow for disabling EDNS
Auto Trait Implementations
impl !RefUnwindSafe for DnsExchange
impl Send for DnsExchange
impl Sync for DnsExchange
impl Unpin for DnsExchange
impl !UnwindSafe for DnsExchange
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more