Struct domain::base::charstr::CharStrBuilder

source ·
pub struct CharStrBuilder<Builder>(/* private fields */);
Expand description

A builder for a character string.

This type wraps an OctetsBuilder and in turn implements the OctetsBuilder trait, making sure that the content cannot grow beyond the 255 octet limit of a character string.

Implementations§

source§

impl<Builder: EmptyBuilder> CharStrBuilder<Builder>

source

pub fn new() -> Self

Creates a new empty builder with default capacity.

source

pub fn with_capacity(capacity: usize) -> Self

Creates a new empty builder with the given capacity.

source§

impl<Builder: OctetsBuilder + AsRef<[u8]>> CharStrBuilder<Builder>

source

pub fn from_builder(builder: Builder) -> Result<Self, CharStrError>

Creates a character string builder from an octet sequence.

If the octet sequence is longer than 255 octets, an error is returned.

source§

impl CharStrBuilder<Vec<u8>>

source

pub fn new_vec() -> Self

Creates a new empty characater string builder atop an octets vec.

source

pub fn vec_with_capacity(capacity: usize) -> Self

Creates a new empty builder atop an octets vec with a given capacity.

source§

impl CharStrBuilder<BytesMut>

source

pub fn new_bytes() -> Self

Creates a new empty builder for a bytes value.

source

pub fn bytes_with_capacity(capacity: usize) -> Self

Creates a new empty builder for a bytes value with a given capacity.

source§

impl<Builder> CharStrBuilder<Builder>

source

pub fn as_slice(&self) -> &[u8]
where Builder: AsRef<[u8]>,

Returns an octet slice of the string assembled so far.

source

pub fn finish(self) -> CharStr<Builder::Octets>
where Builder: FreezeBuilder,

Converts the builder into an imutable character string.

source§

impl<Builder: AsRef<[u8]>> CharStrBuilder<Builder>

source

pub fn len(&self) -> usize

Returns the length of the assembled character string.

This is the length of the content only, i.e., without the extra length octet added for the wire format.

source

pub fn is_empty(&self) -> bool

Returns whether the character string is empty.

Trait Implementations§

source§

impl<Builder: AsMut<[u8]>> AsMut<[u8]> for CharStrBuilder<Builder>

source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<Builder: AsRef<[u8]>> AsRef<[u8]> for CharStrBuilder<Builder>

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<Builder: Clone> Clone for CharStrBuilder<Builder>

source§

fn clone(&self) -> CharStrBuilder<Builder>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Builder: EmptyBuilder> Default for CharStrBuilder<Builder>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<Builder> OctetsBuilder for CharStrBuilder<Builder>
where Builder: OctetsBuilder + AsRef<[u8]>,

§

type AppendError = ShortBuf

The error type when appending data fails. Read more
source§

fn append_slice(&mut self, slice: &[u8]) -> Result<(), Self::AppendError>

Appends the content of a slice to the builder. Read more
source§

impl<Builder: Truncate> Truncate for CharStrBuilder<Builder>

source§

fn truncate(&mut self, len: usize)

Truncate the sequence to len octets. Read more

Auto Trait Implementations§

§

impl<Builder> Freeze for CharStrBuilder<Builder>
where Builder: Freeze,

§

impl<Builder> RefUnwindSafe for CharStrBuilder<Builder>
where Builder: RefUnwindSafe,

§

impl<Builder> Send for CharStrBuilder<Builder>
where Builder: Send,

§

impl<Builder> Sync for CharStrBuilder<Builder>
where Builder: Sync,

§

impl<Builder> Unpin for CharStrBuilder<Builder>
where Builder: Unpin,

§

impl<Builder> UnwindSafe for CharStrBuilder<Builder>
where Builder: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Source, Target> OctetsInto<Target> for Source
where Target: OctetsFrom<Source>,

§

type Error = <Target as OctetsFrom<Source>>::Error

source§

fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>

Performs the conversion.
source§

fn octets_into(self) -> Target
where Self::Error: Into<Infallible>,

Performs an infallible conversion.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more