Trait octseq::builder::IntoBuilder
source · pub trait IntoBuilder {
type Builder: OctetsBuilder;
// Required method
fn into_builder(self) -> Self::Builder;
}
Expand description
An octets type that can be converted into an octets builder.
Required Associated Types§
sourcetype Builder: OctetsBuilder
type Builder: OctetsBuilder
The type of octets builder this octets type can be converted into.
Required Methods§
sourcefn into_builder(self) -> Self::Builder
fn into_builder(self) -> Self::Builder
Converts an octets value into an octets builder.