Struct const_format::AsciiStr

source ·
pub struct AsciiStr<'a>(_);
Available on crate feature fmt only.
Expand description

An ascii string slice.

You can also construct an AsciiStr at compile-time with the ascii_str macro, erroring at compile if the constant isn’t ascii.

Example

use const_format::wrapper_types::{AsciiStr, NotAsciiError};
use const_format::ascii_str;

const HELLO: AsciiStr = unwrap_ascii(AsciiStr::new(b"hello"));
const EURO: AsciiStr = unwrap_ascii(AsciiStr::new("foo €".as_bytes()));

assert_eq!(HELLO.as_str(), "hello");
assert_eq!(EURO.as_str(), "<error>");
assert_eq!(AsciiStr::new("foo €".as_bytes()), Err(NotAsciiError{invalid_from: 4}));

const fn unwrap_ascii(res: Result<AsciiStr<'_>, NotAsciiError>) -> AsciiStr<'_> {
    match res {
        Ok(x) => x,
        Err(_) => ascii_str!("<error>"),
    }
}

Implementations§

source§

impl<'a> AsciiStr<'a>

source

pub const fn from_str(s: &'a str) -> Result<Self, NotAsciiError>

Constructs this AsciiStr from a possibly non-ascii str slice.

Returns a NonAsciiError error on the first non-ascii byte.

Example
use const_format::wrapper_types::{AsciiStr, NotAsciiError};

let ok = AsciiStr::from_str("foo bar").unwrap();

assert_eq!(ok.as_str(), "foo bar");
assert_eq!(AsciiStr::from_str("foo bar ½"), Err(NotAsciiError{invalid_from: 8}));
source

pub const fn new(s: &'a [u8]) -> Result<Self, NotAsciiError>

Constructs this AsciiStr from a possibly non-ascii byte slice.

Returns a NonAsciiError error on the first non-ascii byte.

Example
use const_format::wrapper_types::{AsciiStr, NotAsciiError};

let ok = AsciiStr::new(b"foo bar").unwrap();

assert_eq!(ok.as_str(), "foo bar");
assert_eq!(AsciiStr::new(b"foo bar \x80"), Err(NotAsciiError{invalid_from: 8}));
source

pub const fn empty() -> Self

Constructs an empty AsciiStr

Example
use const_format::AsciiStr;

assert_eq!(AsciiStr::empty().as_str(), "");
source

pub const fn len(self) -> usize

Queries the length of the AsciiStr

Example
use const_format::{AsciiStr, ascii_str};

assert_eq!(AsciiStr::empty().len(), 0);
assert_eq!(ascii_str!("hello").len(), 5);
source

pub const fn is_empty(self) -> bool

Queries whether this AsciiStr is empty.

Example
use const_format::{AsciiStr, ascii_str};

assert_eq!(AsciiStr::empty().is_empty(), true);
assert_eq!(ascii_str!("hello").is_empty(), false);
source

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

Accessor for the wrapped ascii string.

Example
use const_format::{AsciiStr, ascii_str};

assert_eq!(AsciiStr::empty().as_bytes(), b"");
assert_eq!(ascii_str!("hello").as_bytes(), b"hello");
source

pub fn as_str(self) -> &'a str

Accessor for the wrapped ascii string.

Example
use const_format::{AsciiStr, ascii_str};

assert_eq!(AsciiStr::empty().as_str(), "");
assert_eq!(ascii_str!("hello").as_str(), "hello");
source§

impl AsciiStr<'_>

source

pub const fn const_display_fmt( &self, f: &mut Formatter<'_> ) -> Result<(), Error>

source

pub const fn const_debug_fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Trait Implementations§

source§

impl<'a> Clone for AsciiStr<'a>

source§

fn clone(&self) -> AsciiStr<'a>

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<'a> Debug for AsciiStr<'a>

source§

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

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

impl FormatMarker for AsciiStr<'_>

§

type Kind = IsNotStdKind

What kind of type this is, this can be one of: Read more
§

type This = AsciiStr<'_>

The type after dereferencing, implemented as type This = Self; for all non-reference types
source§

impl<'a> Hash for AsciiStr<'a>

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<'a> Ord for AsciiStr<'a>

source§

fn cmp(&self, other: &AsciiStr<'a>) -> Ordering

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

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

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

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

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

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

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

impl<'a> PartialEq<AsciiStr<'a>> for AsciiStr<'a>

source§

fn eq(&self, other: &AsciiStr<'a>) -> 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<'a> PartialOrd<AsciiStr<'a>> for AsciiStr<'a>

source§

fn partial_cmp(&self, other: &AsciiStr<'a>) -> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a> Copy for AsciiStr<'a>

source§

impl<'a> Eq for AsciiStr<'a>

source§

impl<'a> StructuralEq for AsciiStr<'a>

source§

impl<'a> StructuralPartialEq for AsciiStr<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for AsciiStr<'a>

§

impl<'a> Send for AsciiStr<'a>

§

impl<'a> Sync for AsciiStr<'a>

§

impl<'a> Unpin for AsciiStr<'a>

§

impl<'a> UnwindSafe for AsciiStr<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.