[][src]Struct resolv::Response

pub struct Response { /* fields omitted */ }

Implementations

impl Response[src]

pub fn new(msg: Message, buffer: Box<Vec<u8>>) -> Response[src]

This is for internal use.

pub fn get_id(&self) -> u16[src]

Gets the ID field of the Name Server response

pub fn get_flags(&self) -> Flags[src]

Gets flags (and opcodes) in the header of the Name Server response

pub fn get_section_count(&self, section: Section) -> usize[src]

Returns a count of how many records exist in the given section

pub fn get_record<T>(
    &mut self,
    section: Section,
    index: usize
) -> Result<Record<T>, Error> where
    T: RecordData
[src]

Gets a record from a section. Returns an error if index is out of bounds (use get_section_count()). Also returns an error (at run-time) if assigned into a Record of the wrong type.

pub fn questions<T>(&mut self) -> RecordItems<T> where
    T: RecordData
[src]

pub fn answers<T>(&mut self) -> RecordItems<T> where
    T: RecordData
[src]

pub fn authorities<T>(&mut self) -> RecordItems<T> where
    T: RecordData
[src]

pub fn additional_records<T>(&mut self) -> RecordItems<T> where
    T: RecordData
[src]

Auto Trait Implementations

impl RefUnwindSafe for Response

impl !Send for Response

impl !Sync for Response

impl Unpin for Response

impl UnwindSafe for Response

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.