Trait trust_dns::client::ClientConnection [] [src]

pub trait ClientConnection: Sized + Debug {
    fn send(&mut self, bytes: &[u8]) -> ClientResult<Vec<u8>>;
}

Required Methods

fn send(&mut self, bytes: &[u8]) -> ClientResult<Vec<u8>>

send the message to the specified address

Implementors