Trait binrw::BinrwNamedArgs[][src]

pub trait BinrwNamedArgs {
    type Builder;
    fn builder() -> Self::Builder;
}
Expand description

A trait indicating a struct can be constructured using a binrw named arguments builder.

Associated Types

The initial builder type from which this type can be constructed

Required methods

A method for creating a new builder to construct this type from

Implementors