Trait trust_dns::client::ClientStreamHandle [] [src]

pub trait ClientStreamHandle {
    type Error: FromProtoError;
    fn send(&mut self, buffer: Vec<u8>) -> Result<(), Self::Error>;
}

Implementations of Sinks for sending DNS messages

Associated Types

The Error type to be returned if there is an error

Required Methods

Sends a message to the Handle for delivery to the server.

Implementors