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

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[src]

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

Loading content...

Required methods

fn into_builder(self) -> Self::Builder[src]

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>

impl IntoBuilder for Bytes[src]

type Builder = BytesMut

impl<A: Array<Item = u8>> IntoBuilder for SmallVec<A>[src]

type Builder = Self

Loading content...

Implementors

impl IntoBuilder for Octets32[src]

type Builder = Self

impl IntoBuilder for Octets64[src]

type Builder = Self

impl IntoBuilder for Octets128[src]

type Builder = Self

impl IntoBuilder for Octets256[src]

type Builder = Self

impl IntoBuilder for Octets512[src]

type Builder = Self

impl IntoBuilder for Octets1024[src]

type Builder = Self

impl IntoBuilder for Octets2048[src]

type Builder = Self

impl IntoBuilder for Octets4096[src]

type Builder = Self

Loading content...