[−][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][+]
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
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,
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,
impl<T> ToSendValue for T where
T: ToValue + SetValue + Send + ?Sized,
[src][+]
T: ToValue + SetValue + Send + ?Sized,
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>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,