[][src]Trait domain::base::octets::IntoBuilder

pub trait IntoBuilder {
    type Builder: OctetsBuilder;
    fn into_builder(self) -> Self::Builder;
}

An octets type that can be converted into an octets builder.

Associated Types

type Builder: OctetsBuilder

The type of octets builder this octets type can be converted into.

If Builder implements IntoOctets, the Octets associated type of that trait must be Self.

Loading content...

Required methods

fn into_builder(self) -> Self::Builder

Converts an octets value into an octets builder.

Loading content...

Implementations on Foreign Types

impl IntoBuilder for Vec<u8>[src]

type Builder = Self

impl<'a> IntoBuilder for &'a [u8][src]

type Builder = Vec<u8>

impl<'a> IntoBuilder for Cow<'a, [u8]>[src]

type Builder = Vec<u8>

Loading content...

Implementors

impl IntoBuilder for Octets1024[src]

type Builder = Self

impl IntoBuilder for Octets128[src]

type Builder = Self

impl IntoBuilder for Octets2048[src]

type Builder = Self

impl IntoBuilder for Octets256[src]

type Builder = Self

impl IntoBuilder for Octets32[src]

type Builder = Self

impl IntoBuilder for Octets4096[src]

type Builder = Self

impl IntoBuilder for Octets512[src]

type Builder = Self

impl IntoBuilder for Octets64[src]

type Builder = Self

Loading content...