[][src]Struct glib::String

pub struct String(_);

A mutable text buffer that grows automatically.

Methods

impl String[src]

pub fn new<T: AsRef<[u8]>>(data: T) -> String[src]

pub fn append(&mut self, val: &str) -> &mut Self[src]

pub fn insert(&mut self, pos: isize, val: &str) -> &mut Self[src]

pub fn overwrite(&mut self, pos: usize, val: &str) -> &mut Self[src]

pub fn prepend(&mut self, val: &str) -> &mut Self[src]

pub fn truncate(&mut self, len: usize) -> &mut Self[src]

pub fn to_str(&self) -> Result<&str, Utf8Error>[src]

Returns &str slice when contained data is valid UTF-8 string, or an error otherwise.

pub fn to_string_lossy(&self) -> Cow<str>[src]

Returns Cow<str> containing UTF-8 data. Invalid UTF-8 sequences are replaced with replacement character.

Trait Implementations

impl StaticType for String[src]

impl PartialEq<String> for String[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Sync for String[src]

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

impl Default for String[src]

fn default() -> String[src]

Creates a new empty string.

impl Ord for String[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

impl Clone for String[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Send for String[src]

impl Eq for String[src]

impl PartialOrd<String> for String[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

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

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

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

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

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

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

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

impl Display for String[src]

impl Deref for String[src]

type Target = [u8]

The resulting type after dereferencing.

impl Hash for String[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for String[src]

Blanket Implementations

impl<T> ToValue for T where
    T: SetValue + ?Sized
[src]

impl<T> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.