Struct StaticNonNulString

Source
pub struct StaticNonNulString<const CAP: usize> { /* private fields */ }
Expand description

A UTF-8-encoded string, backed by an array of constant capacity. Can’t contain nul chars.

Internally, the first 0 byte in the array indicates the end of the string.

Implementations§

Source§

impl<const CAP: usize> StaticNonNulString<CAP>

Source

pub const fn new() -> Self

Creates a new empty StaticNonNulString.

Source

pub const fn from_char7(c: Char7) -> Self

Creates a new StaticNonNulString from a Char7.

If c.is_nul() an empty string will be returned.

§Panic

Panics if !c.is_nul() and CAP < 1

Will never panic if CAP >= 1.

Source

pub const fn from_char8(c: Char8) -> Self

Creates a new StaticU8String from a Char8.

If c.is_nul() an empty string will be returned.

§Panic

Panics if !c.is_nul() and CAP < c.len_utf8().

Will never panic if CAP >= 2.

Source

pub const fn from_char16(c: Char16) -> Self

Creates a new StaticU8String from a Char16.

If c.is_nul() an empty string will be returned.

§Panic

Panics if !c.is_nul() and CAP < c.len_utf8().

Will never panic if CAP >= 3.

Source

pub const fn from_char24(c: Char24) -> Self

Creates a new StaticU8String from a Char24.

If c.is_nul() an empty string will be returned.

§Panic

Panics if !c.is_nul() and CAP < c.len_utf8().

Will never panic if CAP >= 4.

Source

pub const fn from_char32(c: Char32) -> Self

Creates a new StaticU8String from a Char32.

If c.is_nul() an empty string will be returned.

§Panic

Panics if !c.is_nul() and CAP < c.len_utf8().

Will never panic if CAP is >= 4.

Source

pub const fn from_char(c: char) -> Self

Creates a new StaticU8String from a char.

If c.is_nul() an empty string will be returned.

§Panic

Panics if !c.is_nul() and CAP < c.len_utf8().

Will never panic if CAP is >= 4.

Source

pub const fn capacity() -> usize

Returns the total capacity in bytes.

Source

pub fn remaining_capacity(&self) -> usize

Returns the remaining capacity.

Source

pub fn len(&self) -> usize

Returns the current length.

Source

pub fn is_empty(&self) -> bool

Returns true if the current length is 0.

Source

pub fn is_full(&self) -> bool

Returns true if the current remaining capacity is 0.

Source

pub fn clear(&mut self)

Sets the length to 0, by resetting all bytes to 0.

Source

pub fn as_bytes(&self) -> &[u8]

Returns a byte slice of the inner string slice.

Source

pub unsafe fn as_bytes_mut(&mut self) -> &mut [u8]

Available on crate feature unsafe only.

Returns a mutable byte slice of the inner string slice.

Source

pub const fn as_array(&self) -> [u8; CAP]

Returns a copy of the inner array with the full contents.

The array contains all the bytes, including those outside the current length.

Source

pub const fn into_array(self) -> [u8; CAP]

Returns the inner array with the full contents.

The array contains all the bytes, including those outside the current length.

Source

pub fn as_str(&self) -> &str

Returns the inner string slice.

Source

pub unsafe fn as_str_mut(&mut self) -> &mut str

Available on crate feature unsafe only.

Returns the mutable inner string slice.

Source

pub fn chars(&self) -> Chars<'_>

Available on crate feature alloc only.

Returns an iterator over the chars of this grapheme cluster.

Source

pub fn to_cstring(&self) -> CString

Available on crate feature alloc only.

Returns a new allocated C-compatible, nul-terminanted string.

Source

pub fn pop(&mut self) -> Option<char>

Removes the last character and returns it, or None if the string is empty.

Source

pub fn try_pop(&mut self) -> Result<char>

Tries to remove the last character and return it.

§Errors

Returns an error if the string is empty.

Source

pub fn pop_unchecked(&mut self) -> char

Removes the last character and returns it.

§Panics

Panics if the string is empty.

Source

pub fn push(&mut self, character: char) -> usize

Appends to the end of the string the given character.

Returns the number of bytes written.

It will return 0 bytes if the given character doesn’t fit in the remaining capacity, or if it is the nul character.

Source

pub fn try_push(&mut self, character: char) -> Result<usize>

Tries to append to the end of the string the given character.

Returns the number of bytes written.

Trying to push a nul character does nothing and returns 0 bytes.

§Errors

Returns an error if the capacity is not enough to hold the given character.

Source

pub fn push_str(&mut self, string: &str) -> usize

Appends to the end the fitting characters from the given string slice.

Nul characters will be stripped out.

Returns the number of bytes written, which will be 0 if not even the first non-nul character can fit.

Source

pub fn try_push_str(&mut self, string: &str) -> Result<usize>

Tries to append to the end the fitting characters from the given string slice.

Nul characters will be stripped out.

Returns the number of bytes written.

§Errors

Returns an error if the capacity is not enough to hold even the first non-nul character.

Source

pub fn try_push_str_complete(&mut self, string: &str) -> Result<usize>

Tries to append the complete string slice to the end.

Returns the number of bytes written in success.

Nul characters will not be taken into account.

§Errors

Returns an error if the slice wont completely fit.

Trait Implementations§

Source§

impl<const CAP: usize> Clone for StaticNonNulString<CAP>

Source§

fn clone(&self) -> StaticNonNulString<CAP>

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<const CAP: usize> Debug for StaticNonNulString<CAP>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const CAP: usize> Default for StaticNonNulString<CAP>

Source§

fn default() -> Self

Returns an empty string.

Source§

impl<const CAP: usize> Display for StaticNonNulString<CAP>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const CAP: usize> Hash for StaticNonNulString<CAP>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<const CAP: usize> Ord for StaticNonNulString<CAP>

Source§

fn cmp(&self, other: &StaticNonNulString<CAP>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<const CAP: usize> PartialEq for StaticNonNulString<CAP>

Source§

fn eq(&self, other: &StaticNonNulString<CAP>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const CAP: usize> PartialOrd for StaticNonNulString<CAP>

Source§

fn partial_cmp(&self, other: &StaticNonNulString<CAP>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<const CAP: usize> Copy for StaticNonNulString<CAP>

Source§

impl<const CAP: usize> Eq for StaticNonNulString<CAP>

Source§

impl<const CAP: usize> StructuralPartialEq for StaticNonNulString<CAP>

Auto Trait Implementations§

§

impl<const CAP: usize> Freeze for StaticNonNulString<CAP>

§

impl<const CAP: usize> RefUnwindSafe for StaticNonNulString<CAP>

§

impl<const CAP: usize> Send for StaticNonNulString<CAP>

§

impl<const CAP: usize> Sync for StaticNonNulString<CAP>

§

impl<const CAP: usize> Unpin for StaticNonNulString<CAP>

§

impl<const CAP: usize> UnwindSafe for StaticNonNulString<CAP>

Blanket Implementations§

Source§

impl<T> Also for T

Source§

fn also_mut<F>(self, f: F) -> Self
where F: FnOnce(&mut Self),

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
Source§

fn also_ref<F>(self, f: F) -> Self
where F: FnOnce(&Self),

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
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, Res> Apply<Res> for T
where T: ?Sized,

Source§

fn apply<F>(self, f: F) -> Res
where F: FnOnce(Self) -> Res, Self: Sized,

Apply a function which takes the parameter by value.
Source§

fn apply_ref<F>(&self, f: F) -> Res
where F: FnOnce(&Self) -> Res,

Apply a function which takes the parameter by shared reference.
Source§

fn apply_mut<F>(&mut self, f: F) -> Res
where F: FnOnce(&mut Self) -> Res,

Apply a function which takes the parameter by exclusive reference.
Source§

impl<T> Az for T

Source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
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<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

Source§

fn cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> CheckedAs for T

Source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

Source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
Source§

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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<T> OverflowingAs for T

Source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

Source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
Source§

impl<T> SaturatingAs for T

Source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

Source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
Source§

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

Source§

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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>,

Source§

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<T> UnwrappedAs for T

Source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

Source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
Source§

impl<T> WrappingAs for T

Source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
Source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

Source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.