[−][src]Struct ascii::AsciiString
A growable string stored as an ASCII encoded buffer.
Methods
impl AsciiString
[src]
pub fn new() -> Self
[src]
Creates a new, empty ASCII string buffer without allocating.
Examples
let mut s = AsciiString::new();
pub fn with_capacity(capacity: usize) -> Self
[src]
Creates a new ASCII string buffer with the given capacity.
The string will be able to hold exactly capacity
bytes without reallocating.
If capacity
is 0, the ASCII string will not allocate.
Examples
let mut s = AsciiString::with_capacity(10);
pub unsafe fn from_raw_parts(
buf: *mut AsciiChar,
length: usize,
capacity: usize
) -> Self
[src]
buf: *mut AsciiChar,
length: usize,
capacity: usize
) -> Self
Creates a new AsciiString
from a length, capacity and pointer.
Safety
This is highly unsafe, due to the number of invariants that aren't checked:
- The memory at
ptr
need to have been previously allocated by the same allocator this library uses. length
needs to be less than or equal tocapacity
.capacity
needs to be the correct value.
Violating these may cause problems like corrupting the allocator's internal datastructures.
Examples
Basic usage:
use std::mem; unsafe { let s = AsciiString::from_ascii("hello").unwrap(); let ptr = s.as_ptr(); let len = s.len(); let capacity = s.capacity(); mem::forget(s); let s = AsciiString::from_raw_parts(ptr as *mut _, len, capacity); assert_eq!(AsciiString::from_ascii("hello").unwrap(), s); }
pub unsafe fn from_ascii_unchecked<B>(bytes: B) -> Self where
B: Into<Vec<u8>>,
[src]
B: Into<Vec<u8>>,
Converts a vector of bytes to an AsciiString
without checking for non-ASCII characters.
Safety
This function is unsafe because it does not check that the bytes passed to it are valid
ASCII characters. If this constraint is violated, it may cause memory unsafety issues with
future of the AsciiString
, as the rest of this library assumes that AsciiString
s are
ASCII encoded.
pub fn from_ascii<B>(bytes: B) -> Result<AsciiString, FromAsciiError<B>> where
B: Into<Vec<u8>> + AsRef<[u8]>,
[src]
B: Into<Vec<u8>> + AsRef<[u8]>,
Converts anything that can represent a byte buffer into an AsciiString
.
Failure
Returns the byte buffer if not all of the bytes are ASCII characters.
Examples
let foo = AsciiString::from_ascii("foo".to_string()).unwrap(); let err = AsciiString::from_ascii("Ŋ".to_string()).unwrap_err(); assert_eq!(foo.as_str(), "foo"); assert_eq!(err.into_source(), "Ŋ");
pub fn push_str(&mut self, string: &AsciiStr)
[src]
Pushes the given ASCII string onto this ASCII string buffer.
Examples
use std::str::FromStr; let mut s = AsciiString::from_str("foo").unwrap(); s.push_str("bar".as_ascii_str().unwrap()); assert_eq!(s, "foobar".as_ascii_str().unwrap());
pub fn capacity(&self) -> usize
[src]
Returns the number of bytes that this ASCII string buffer can hold without reallocating.
Examples
let s = String::with_capacity(10); assert!(s.capacity() >= 10);
pub fn reserve(&mut self, additional: usize)
[src]
Reserves capacity for at least additional
more bytes to be inserted in the given
AsciiString
. The collection may reserve more space to avoid frequent reallocations.
Panics
Panics if the new capacity overflows usize
.
Examples
let mut s = AsciiString::new(); s.reserve(10); assert!(s.capacity() >= 10);
pub fn reserve_exact(&mut self, additional: usize)
[src]
Reserves the minimum capacity for exactly additional
more bytes to be inserted in the
given AsciiString
. Does nothing if the capacity is already sufficient.
Note that the allocator may give the collection more space than it requests. Therefore
capacity can not be relied upon to be precisely minimal. Prefer reserve
if future
insertions are expected.
Panics
Panics if the new capacity overflows usize
.
Examples
let mut s = AsciiString::new(); s.reserve_exact(10); assert!(s.capacity() >= 10);
pub fn shrink_to_fit(&mut self)
[src]
Shrinks the capacity of this ASCII string buffer to match it's length.
Examples
use std::str::FromStr; let mut s = AsciiString::from_str("foo").unwrap(); s.reserve(100); assert!(s.capacity() >= 100); s.shrink_to_fit(); assert_eq!(s.capacity(), 3);
pub fn push(&mut self, ch: AsciiChar)
[src]
Adds the given ASCII character to the end of the ASCII string.
Examples
let mut s = AsciiString::from_ascii("abc").unwrap(); s.push(AsciiChar::from_ascii('1').unwrap()); s.push(AsciiChar::from_ascii('2').unwrap()); s.push(AsciiChar::from_ascii('3').unwrap()); assert_eq!(s, "abc123");
pub fn truncate(&mut self, new_len: usize)
[src]
Shortens a ASCII string to the specified length.
Panics
Panics if new_len
> current length.
Examples
let mut s = AsciiString::from_ascii("hello").unwrap(); s.truncate(2); assert_eq!(s, "he");
pub fn pop(&mut self) -> Option<AsciiChar>
[src]
Removes the last character from the ASCII string buffer and returns it.
Returns None
if this string buffer is empty.
Examples
let mut s = AsciiString::from_ascii("foo").unwrap(); assert_eq!(s.pop().map(|c| c.as_char()), Some('o')); assert_eq!(s.pop().map(|c| c.as_char()), Some('o')); assert_eq!(s.pop().map(|c| c.as_char()), Some('f')); assert_eq!(s.pop(), None);
pub fn remove(&mut self, idx: usize) -> AsciiChar
[src]
Removes the ASCII character at position idx
from the buffer and returns it.
Warning
This is an O(n) operation as it requires copying every element in the buffer.
Panics
If idx
is out of bounds this function will panic.
Examples
let mut s = AsciiString::from_ascii("foo").unwrap(); assert_eq!(s.remove(0).as_char(), 'f'); assert_eq!(s.remove(1).as_char(), 'o'); assert_eq!(s.remove(0).as_char(), 'o');
pub fn insert(&mut self, idx: usize, ch: AsciiChar)
[src]
Inserts an ASCII character into the buffer at position idx
.
Warning
This is an O(n) operation as it requires copying every element in the buffer.
Panics
If idx
is out of bounds this function will panic.
Examples
let mut s = AsciiString::from_ascii("foo").unwrap(); s.insert(2, AsciiChar::b); assert_eq!(s, "fobo");
pub fn len(&self) -> usize
[src]
Returns the number of bytes in this ASCII string.
Examples
let s = AsciiString::from_ascii("foo").unwrap(); assert_eq!(s.len(), 3);
pub fn is_empty(&self) -> bool
[src]
Returns true if the ASCII string contains zero bytes.
Examples
let mut s = AsciiString::new(); assert!(s.is_empty()); s.push(AsciiChar::from_ascii('a').unwrap()); assert!(!s.is_empty());
pub fn clear(&mut self)
[src]
Truncates the ASCII string, setting length (but not capacity) to zero.
Examples
let mut s = AsciiString::from_ascii("foo").unwrap(); s.clear(); assert!(s.is_empty());
Methods from Deref<Target = AsciiStr>
pub fn as_str(&self) -> &str
[src]
Converts &self
to a &str
slice.
pub fn as_bytes(&self) -> &[u8]
[src]
Converts &self
into a byte slice.
pub const fn as_slice(&self) -> &[AsciiChar]
[src]
Returns the entire string as slice of AsciiChar
s.
pub fn as_mut_slice(&mut self) -> &mut [AsciiChar]
[src]
Returns the entire string as mutable slice of AsciiChar
s.
pub const fn as_ptr(&self) -> *const AsciiChar
[src]
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.
pub fn as_mut_ptr(&mut self) -> *mut AsciiChar
[src]
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.
pub fn to_ascii_string(&self) -> AsciiString
[src]
Copies the content of this AsciiStr
into an owned AsciiString
.
pub fn len(&self) -> usize
[src]
Returns the number of characters / bytes in this ASCII sequence.
Examples
let s = AsciiStr::from_ascii("foo").unwrap(); assert_eq!(s.len(), 3);
pub fn is_empty(&self) -> bool
[src]
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());
ⓘImportant traits for Chars<'a>pub fn chars(&self) -> Chars
[src]
Returns an iterator over the characters of the AsciiStr
.
ⓘImportant traits for CharsMut<'a>pub fn chars_mut(&mut self) -> CharsMut
[src]
Returns an iterator over the characters of the AsciiStr
which allows you to modify the
value of each AsciiChar
.
pub fn split(&self, on: AsciiChar) -> impl DoubleEndedIterator<Item = &AsciiStr>
[src]
Returns an iterator over parts of the AsciiStr
separated by a character.
Examples
let words = AsciiStr::from_ascii("apple banana lemon").unwrap() .split(AsciiChar::Space) .map(|a| a.as_str()) .collect::<Vec<_>>(); assert_eq!(words, ["apple", "banana", "lemon"]);
pub fn lines(&self) -> impl DoubleEndedIterator<Item = &AsciiStr>
[src]
Returns an iterator over the lines of the AsciiStr
, which are themselves AsciiStr
s.
Lines are ended with either LineFeed
(\n
), or CarriageReturn
then LineFeed
(\r\n
).
The final line ending is optional.
pub fn trim(&self) -> &Self
[src]
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());
pub fn trim_start(&self) -> &Self
[src]
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_start());
pub fn trim_end(&self) -> &Self
[src]
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_end());
pub fn eq_ignore_ascii_case(&self, other: &Self) -> bool
[src]
Compares two strings case-insensitively.
pub fn make_ascii_uppercase(&mut self)
[src]
Replaces lowercase letters with their uppercase equivalent.
pub fn make_ascii_lowercase(&mut self)
[src]
Replaces uppercase letters with their lowercase equivalent.
pub fn to_ascii_uppercase(&self) -> AsciiString
[src]
Returns a copy of this string where letters 'a' to 'z' are mapped to 'A' to 'Z'.
pub fn to_ascii_lowercase(&self) -> AsciiString
[src]
Returns a copy of this string where letters 'A' to 'Z' are mapped to 'a' to 'z'.
pub fn first(&self) -> Option<AsciiChar>
[src]
Returns the first character if the string is not empty.
pub fn last(&self) -> Option<AsciiChar>
[src]
Returns the last character if the string is not empty.
Trait Implementations
impl IntoAsciiString for AsciiString
[src]
unsafe fn into_ascii_string_unchecked(self) -> AsciiString
[src]
fn into_ascii_string(self) -> Result<AsciiString, FromAsciiError<Self>>
[src]
impl AsRef<AsciiStr> for AsciiString
[src]
impl AsRef<[AsciiChar]> for AsciiString
[src]
impl AsRef<[u8]> for AsciiString
[src]
impl AsRef<str> for AsciiString
[src]
impl Default for AsciiString
[src]
fn default() -> AsciiString
[src]
impl Eq for AsciiString
[src]
impl Clone for AsciiString
[src]
fn clone(&self) -> AsciiString
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialOrd<AsciiString> for AsciiString
[src]
fn partial_cmp(&self, other: &AsciiString) -> Option<Ordering>
[src]
fn lt(&self, other: &AsciiString) -> bool
[src]
fn le(&self, other: &AsciiString) -> bool
[src]
fn gt(&self, other: &AsciiString) -> bool
[src]
fn ge(&self, other: &AsciiString) -> bool
[src]
impl<A: AsRef<AsciiStr>> Extend<A> for AsciiString
[src]
fn extend<I: IntoIterator<Item = A>>(&mut self, iterable: I)
[src]
impl PartialEq<AsciiString> for AsciiString
[src]
fn eq(&self, other: &AsciiString) -> bool
[src]
fn ne(&self, other: &AsciiString) -> bool
[src]
impl PartialEq<str> for AsciiString
[src]
fn eq(&self, other: &str) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl PartialEq<AsciiString> for str
[src]
fn eq(&self, other: &AsciiString) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<String> for AsciiString
[src]
fn eq(&self, other: &String) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<AsciiString> for String
[src]
fn eq(&self, other: &AsciiString) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<AsciiString> for &'a AsciiStr
[src]
fn eq(&self, other: &AsciiString) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<&'a AsciiStr> for AsciiString
[src]
fn eq(&self, other: &&'a AsciiStr) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<AsciiString> for &'a str
[src]
fn eq(&self, other: &AsciiString) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'a> PartialEq<&'a str> for AsciiString
[src]
fn eq(&self, other: &&'a str) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl From<Vec<AsciiChar>> for AsciiString
[src]
impl<'a> From<&'a AsciiStr> for AsciiString
[src]
impl<'a> From<&'a [AsciiChar]> for AsciiString
[src]
impl<'a> From<Cow<'a, AsciiStr>> for AsciiString
[src]
fn from(cow: Cow<'a, AsciiStr>) -> AsciiString
[src]
impl From<AsciiString> for Cow<'static, AsciiStr>
[src]
fn from(string: AsciiString) -> Cow<'static, AsciiStr>
[src]
impl Into<Vec<u8>> for AsciiString
[src]
impl Into<String> for AsciiString
[src]
impl Ord for AsciiString
[src]
fn cmp(&self, other: &AsciiString) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
[src]
clamp
)Restrict a value to a certain interval. Read more
impl AsMut<AsciiStr> for AsciiString
[src]
impl AsMut<[AsciiChar]> for AsciiString
[src]
impl Deref for AsciiString
[src]
impl DerefMut for AsciiString
[src]
impl Hash for AsciiString
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Display for AsciiString
[src]
impl Debug for AsciiString
[src]
impl Write for AsciiString
[src]
Please note that the std::fmt::Result
returned by these methods does not support
transmission of an error other than that an error occurred.
fn write_str(&mut self, s: &str) -> Result
[src]
fn write_char(&mut self, c: char) -> Result
[src]
fn write_fmt(&mut self, args: Arguments) -> Result<(), Error>
1.0.0[src]
Glue for usage of the [write!
] macro with implementors of this trait. Read more
impl FromStr for AsciiString
[src]
type Err = AsAsciiStrError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<AsciiString, AsAsciiStrError>
[src]
impl<'a> Add<&'a AsciiStr> for AsciiString
[src]
type Output = AsciiString
The resulting type after applying the +
operator.
fn add(self, other: &AsciiStr) -> AsciiString
[src]
impl<'a> AddAssign<&'a AsciiStr> for AsciiString
[src]
fn add_assign(&mut self, other: &AsciiStr)
[src]
impl<T> Index<T> for AsciiString where
AsciiStr: Index<T>,
[src]
AsciiStr: Index<T>,
type Output = <AsciiStr as Index<T>>::Output
The returned type after indexing.
fn index(&self, index: T) -> &<AsciiStr as Index<T>>::Output
[src]
impl<T> IndexMut<T> for AsciiString where
AsciiStr: IndexMut<T>,
[src]
AsciiStr: IndexMut<T>,
impl<A: AsRef<AsciiStr>> FromIterator<A> for AsciiString
[src]
fn from_iter<I: IntoIterator<Item = A>>(iter: I) -> AsciiString
[src]
impl Borrow<AsciiStr> for AsciiString
[src]
impl BorrowMut<AsciiStr> for AsciiString
[src]
fn borrow_mut(&mut self) -> &mut AsciiStr
[src]
Auto Trait Implementations
impl Unpin for AsciiString
impl Sync for AsciiString
impl Send for AsciiString
impl UnwindSafe for AsciiString
impl RefUnwindSafe for AsciiString
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,