Struct ascii::AsciiStr [] [src]

pub struct AsciiStr { /* fields omitted */ }

AsciiStr represents a byte or string slice that only contains ASCII characters.

It wraps an [AsciiChar] and implements many of strs methods and traits.

It can be created by a checked conversion from a str or [u8], or borrowed from an AsciiString.

Methods

impl AsciiStr
[src]

Coerces into an AsciiStr slice.

Converts &self to a &str slice.

Converts &self into a byte slice.

Returns the entire string as slice of AsciiChars.

Returns the entire string as mutable slice of AsciiChars.

Returns a raw pointer to the AsciiStr's buffer.

The caller must ensure that the slice outlives the pointer this function returns, or else it will end up pointing to garbage. Modifying the AsciiStr may cause it's buffer to be reallocated, which would also make any pointers to it invalid.

Returns an unsafe mutable pointer to the AsciiStr's buffer.

The caller must ensure that the slice outlives the pointer this function returns, or else it will end up pointing to garbage. Modifying the AsciiStr may cause it's buffer to be reallocated, which would also make any pointers to it invalid.

Converts anything that can represent a byte slice into an AsciiStr.

Examples

let foo = AsciiStr::from_ascii("foo");
let err = AsciiStr::from_ascii("Ŋ");
assert_eq!(foo.unwrap().as_str(), "foo");
assert_eq!(err.unwrap_err().valid_up_to(), 0);

Converts anything that can be represented as a byte slice to an AsciiStr without checking for non-ASCII characters..

Examples

let foo = unsafe{ AsciiStr::from_ascii_unchecked("foo") };
assert_eq!(foo.as_str(), "foo");

Returns the number of characters / bytes in this ASCII sequence.

Examples

let s = AsciiStr::from_ascii("foo").unwrap();
assert_eq!(s.len(), 3);

Returns true if the ASCII slice contains zero bytes.

Examples

let mut empty = AsciiStr::from_ascii("").unwrap();
let mut full = AsciiStr::from_ascii("foo").unwrap();
assert!(empty.is_empty());
assert!(!full.is_empty());

Returns an iterator over the characters of the AsciiStr.

Returns an iterator over the characters of the AsciiStr which allows you to modify the value of each AsciiChar.

Returns an iterator over the lines of the AsciiStr, which are themselves AsciiStrs.

Lines are ended with either LineFeed (\n), or CarriageReturn then LineFeed (\r\n).

The final line ending is optional.

Returns an ASCII string slice with leading and trailing whitespace removed.

Examples

let example = AsciiStr::from_ascii("  \twhite \tspace  \t").unwrap();
assert_eq!("white \tspace", example.trim());

Returns an ASCII string slice with leading whitespace removed.

Examples

let example = AsciiStr::from_ascii("  \twhite \tspace  \t").unwrap();
assert_eq!("white \tspace  \t", example.trim_left());

Returns an ASCII string slice with trailing whitespace removed.

Examples

let example = AsciiStr::from_ascii("  \twhite \tspace  \t").unwrap();
assert_eq!("  \twhite \tspace", example.trim_right());

Compares two strings case-insensitively.

A replacement for AsciiExt::eq_ignore_ascii_case().

Replaces lowercase letters with their uppercase equivalent.

A replacement for AsciiExt::make_ascii_uppercase().

Replaces uppercase letters with their lowercase equivalent.

A replacement for AsciiExt::make_ascii_lowercase().

Trait Implementations

impl PartialEq for AsciiStr
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AsciiStr
[src]

impl PartialOrd for AsciiStr
[src]

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

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

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

impl Ord for AsciiStr
[src]

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

impl Hash for AsciiStr
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl PartialEq<str> for AsciiStr
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl AsRef<[u8]> for AsciiStr
[src]

Performs the conversion.

impl AsRef<str> for AsciiStr
[src]

Performs the conversion.

impl AsRef<[AsciiChar]> for AsciiStr
[src]

Performs the conversion.

impl AsMut<[AsciiChar]> for AsciiStr
[src]

Performs the conversion.

impl Default for &'static AsciiStr
[src]

Returns the "default value" for a type. Read more

impl<'a> From<&'a [AsciiChar]> for &'a AsciiStr
[src]

Performs the conversion.

impl<'a> From<&'a mut [AsciiChar]> for &'a mut AsciiStr
[src]

Performs the conversion.

impl Display for AsciiStr
[src]

Formats the value using the given formatter. Read more

impl Debug for AsciiStr
[src]

Formats the value using the given formatter.

impl Index<usize> for AsciiStr
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl IndexMut<usize> for AsciiStr
[src]

The method for the mutable indexing (container[index]) operation

impl Index<Range<usize>> for AsciiStr
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl IndexMut<Range<usize>> for AsciiStr
[src]

The method for the mutable indexing (container[index]) operation

impl Index<RangeTo<usize>> for AsciiStr
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl IndexMut<RangeTo<usize>> for AsciiStr
[src]

The method for the mutable indexing (container[index]) operation

impl Index<RangeFrom<usize>> for AsciiStr
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl IndexMut<RangeFrom<usize>> for AsciiStr
[src]

The method for the mutable indexing (container[index]) operation

impl Index<RangeFull> for AsciiStr
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl IndexMut<RangeFull> for AsciiStr
[src]

The method for the mutable indexing (container[index]) operation

impl<'a> IntoIterator for &'a AsciiStr
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a mut AsciiStr
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl AsAsciiStr for AsciiStr
[src]

Convert to an ASCII slice.

Convert to an ASCII slice without checking for non-ASCII characters.

impl AsMutAsciiStr for AsciiStr
[src]

Convert to a mutable ASCII slice.

Convert to a mutable ASCII slice without checking for non-ASCII characters.