pub type BoundedString<S> = BoundedBytesString<StringKind, S>;

Aliased Type§

struct BoundedString<S> { /* private fields */ }

Implementations

source§

impl<K, S: Get<u32>> BoundedBytesString<K, S>

source

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

source

pub fn as_str(&self) -> Result<&str, Utf8Error>

Trait Implementations

source§

impl<K, S> StructuralPartialEq for BoundedBytesString<K, S>

source§

impl<K: Kind, S: Get<u32>> Clone for BoundedBytesString<K, S>

source§

fn clone(&self) -> Self

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<K, S, const N: usize> From<&[u8; N]> for BoundedBytesString<K, S>

source§

fn from(value: &[u8; N]) -> Self

Converts to this type from the input type.
source§

impl<K, S> From<Vec<u8>> for BoundedBytesString<K, S>

source§

fn from(value: Vec<u8>) -> Self

Converts to this type from the input type.
source§

impl<K, S> From<&str> for BoundedBytesString<K, S>

source§

fn from(value: &str) -> Self

Converts to this type from the input type.
source§

impl<K: Debug, S: Debug> Debug for BoundedBytesString<K, S>

source§

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

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

impl<K, S> From<String> for BoundedBytesString<K, S>

source§

fn from(value: String) -> Self

Converts to this type from the input type.
source§

impl<K, S, const N: usize> From<[u8; N]> for BoundedBytesString<K, S>

source§

fn from(value: [u8; N]) -> Self

Converts to this type from the input type.
source§

impl<K: PartialEq, S: PartialEq> PartialEq for BoundedBytesString<K, S>

source§

fn eq(&self, other: &BoundedBytesString<K, S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<K, S> From<&[u8]> for BoundedBytesString<K, S>

source§

fn from(value: &[u8]) -> Self

Converts to this type from the input type.
source§

impl<K: Eq, S: Eq> Eq for BoundedBytesString<K, S>

source§

impl<K: Kind, S: Get<u32>> Codec for BoundedBytesString<K, S>

source§

fn read(reader: &mut Reader<'_>) -> MayRevert<Self>

source§

fn write(writer: &mut Writer, value: Self)

source§

fn has_static_size() -> bool

source§

fn signature() -> String

source§

fn is_explicit_tuple() -> bool

source§

impl<K, S> StructuralEq for BoundedBytesString<K, S>