Trait domain::bits::rdata::RecordData[][src]

pub trait RecordData: Sized {
    fn rtype(&self) -> Rtype;
fn compose<C: AsMut<Composer>>(&self, target: C) -> ComposeResult<()>; }

A trait for types representing record data.

Required Methods

Returns the record type for this record data instance.

This is a method rather than an associated function to allow one type to be used for several real record types.

Appends the record data to the end of a composer.

Implementors