Struct EscapedStr

Source
pub struct EscapedStr { /* private fields */ }
Expand description

A string with backslash escapes in it

This wrapper allows referencing escaped strings in the source while preventing improper use. Use EscapedStr::as_raw_str to access the underlying buffer, or the Display trait to get owned versions. Use EscapedStr::unescape to access a char iter.

Implementations§

Source§

impl EscapedStr

Source

pub fn as_raw_str(&self) -> &str

Access the underly buffer with escape sequences in it

Source

pub fn unescape(&self) -> Unescaped<'_>

Get an iterator over the true characters

Trait Implementations§

Source§

impl Debug for EscapedStr

Source§

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

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

impl Display for EscapedStr

Source§

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

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

impl Ord for EscapedStr

Source§

fn cmp(&self, other: &EscapedStr) -> Ordering

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

impl PartialEq for EscapedStr

Source§

fn eq(&self, other: &EscapedStr) -> bool

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

const 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 PartialOrd for EscapedStr

Source§

fn partial_cmp(&self, other: &EscapedStr) -> 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 Eq for EscapedStr

Source§

impl StructuralPartialEq for EscapedStr

Auto Trait Implementations§

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

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more