[][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 AsRef<[u8]> for String[src]

impl Clone for String[src]

impl Debug for String[src]

impl Default for String[src]

fn default() -> String[src]

Creates a new empty string.

impl Deref for String[src]

type Target = [u8]

The resulting type after dereferencing.

impl Display for String[src]

impl Eq for String[src]

impl Hash for String[src]

impl Ord for String[src]

impl PartialEq<String> for String[src]

impl PartialOrd<String> for String[src]

impl Send for String[src]

impl StaticType for String[src]

impl Sync for String[src]

Auto Trait Implementations

impl RefUnwindSafe for String

impl Unpin for String

impl UnwindSafe for String

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.