Struct stringbuf::StringBuf [] [src]

pub struct StringBuf(_);

Methods

impl StringBuf
[src]

Methods from Deref<Target = String>

Converts a String into a byte vector.

This consumes the String, so we do not need to copy its contents.

Examples

Basic usage:

let s = String::from("hello");
let bytes = s.into_bytes();

assert_eq!(&[104, 101, 108, 108, 111][..], &bytes[..]);

Extracts a string slice containing the entire string.

Returns this String's capacity, in bytes.

Examples

Basic usage:

let s = String::with_capacity(10);

assert!(s.capacity() >= 10);

Returns a byte slice of this String's contents.

The inverse of this method is from_utf8.

Examples

Basic usage:

let s = String::from("hello");

assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());

Returns the length of this String, in bytes.

Examples

Basic usage:

let a = String::from("foo");

assert_eq!(a.len(), 3);

Returns true if this String has a length of zero.

Returns false otherwise.

Examples

Basic usage:

let mut v = String::new();
assert!(v.is_empty());

v.push('a');
assert!(!v.is_empty());

Converts this String into a Box<str>.

This will drop any excess capacity.

Examples

Basic usage:

let s = String::from("hello");

let b = s.into_boxed_str();

Trait Implementations

impl Clone for StringBuf
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StringBuf
[src]

Formats the value using the given formatter.

impl Default for StringBuf
[src]

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

impl PartialEq for StringBuf
[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 StringBuf
[src]

impl PartialOrd for StringBuf
[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 StringBuf
[src]

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

impl Deref for StringBuf
[src]

The resulting type after dereferencing

The method called to dereference a value

impl Display for StringBuf
[src]

Formats the value using the given formatter. Read more

impl<'s> From<&'s str> for StringBuf
[src]

Performs the conversion.

impl From<String> for StringBuf
[src]

Performs the conversion.

impl<'s, S> Add<S> for StringBuf where
    S: Into<&'s str>, 
[src]

The resulting type after applying the + operator

The method for the + operator

impl<'s, S> AddAssign<S> for StringBuf where
    S: Into<&'s str>, 
[src]

The method for the += operator