[−][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 AsRef<[u8]> for String
[src]
impl Clone for String
[src]
impl Debug for String
[src]
impl Default for String
[src]
impl Deref for String
[src]
impl Display for String
[src]
impl Eq 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,
impl Ord for String
[src]
fn cmp(&self, other: &Self) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<String> 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) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Send for String
[src]
impl StaticType for String
[src]
fn static_type() -> Type
[src]
impl Sync for String
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
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> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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> 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> ToValue for T where
T: SetValue + ?Sized,
[src]
T: SetValue + ?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>,