[−][src]Struct glib::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]
fn static_type() -> Type[src]
impl PartialEq<String> for String[src]
fn eq(&self, other: &Self) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Sync for String[src]
impl AsRef<[u8]> for String[src]
impl Default for String[src]
impl Ord for String[src]
fn cmp(&self, other: &Self) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Clone for String[src]
fn clone(&self) -> 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]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.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) -> bool1.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) -> bool1.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) -> bool1.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]
impl Hash for String[src]
fn hash<H>(&self, state: &mut H) where
H: Hasher, [src]
H: Hasher,
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 Debug for String[src]
Blanket Implementations
impl<T> ToValue for T where
T: SetValue + ?Sized, [src]
T: SetValue + ?Sized,
impl<T> ToSendValue for T where
T: ToValue + SetValue + Send + ?Sized, [src]
T: ToValue + SetValue + Send + ?Sized,
fn to_send_value(&Self) -> SendValue[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
try_from)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> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,