[−][src]Struct imgui::ImString
A UTF-8 encoded, growable, implicitly null-terminated string.
Implementations
impl ImString
[src]
pub fn new<T: Into<String>>(value: T) -> ImString
[src]
Creates a new ImString
from an existing string.
pub fn with_capacity(capacity: usize) -> ImString
[src]
Creates a new empty ImString
with a particular capacity
pub unsafe fn from_utf8_unchecked(v: Vec<u8>) -> ImString
[src]
Converts a vector of bytes to a ImString
without checking that the string contains valid
UTF-8
pub unsafe fn from_utf8_with_nul_unchecked(v: Vec<u8>) -> ImString
[src]
Converts a vector of bytes to a ImString
without checking that the string contains valid
UTF-8
pub fn clear(&mut self)
[src]
Truncates this ImString
, removing all contents
pub fn push(&mut self, ch: char)
[src]
Appends the given character to the end of this ImString
pub fn push_str(&mut self, string: &str)
[src]
Appends a given string slice to the end of this ImString
pub fn capacity(&self) -> usize
[src]
Returns the capacity of this ImString
in bytes
pub fn capacity_with_nul(&self) -> usize
[src]
Returns the capacity of this ImString
in bytes, including the implicit null byte
pub fn reserve(&mut self, additional: usize)
[src]
Ensures that the capacity of this ImString
is at least additional
bytes larger than the
current length.
The capacity may be increased by more than additional
bytes.
pub fn reserve_exact(&mut self, additional: usize)
[src]
Ensures that the capacity of this ImString
is at least additional
bytes larger than the
current length
pub fn as_ptr(&self) -> *const c_char
[src]
pub fn as_mut_ptr(&mut self) -> *mut c_char
[src]
Methods from Deref<Target = ImStr>
pub fn as_ptr(&self) -> *const c_char
[src]
Converts an imgui-rs string slice to a raw pointer
pub fn to_str(&self) -> &str
[src]
Converts an imgui-rs string slice to a normal string slice
pub fn is_empty(&self) -> bool
[src]
Returns true if the imgui-rs string slice is empty
Trait Implementations
impl AsRef<ImStr> for ImString
[src]
impl AsRef<str> for ImString
[src]
impl Borrow<ImStr> for ImString
[src]
impl Borrow<str> for ImString
[src]
impl Clone for ImString
[src]
impl Debug for ImString
[src]
impl<'a> Default for ImString
[src]
impl Deref for ImString
[src]
impl Display for ImString
[src]
impl Eq for ImString
[src]
impl<'a> From<&'a ImString> for Cow<'a, ImStr>
[src]
impl<'a, T: ?Sized + AsRef<ImStr>> From<&'a T> for ImString
[src]
impl<'a> From<ImString> for Cow<'a, ImStr>
[src]
impl From<String> for ImString
[src]
impl Hash for ImString
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Index<RangeFull> for ImString
[src]
type Output = ImStr
The returned type after indexing.
fn index(&self, _index: RangeFull) -> &ImStr
[src]
impl Ord for ImString
[src]
fn cmp(&self, other: &ImString) -> 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<ImString> for ImString
[src]
impl PartialOrd<ImString> for ImString
[src]
fn partial_cmp(&self, other: &ImString) -> Option<Ordering>
[src]
fn lt(&self, other: &ImString) -> bool
[src]
fn le(&self, other: &ImString) -> bool
[src]
fn gt(&self, other: &ImString) -> bool
[src]
fn ge(&self, other: &ImString) -> bool
[src]
impl StructuralEq for ImString
[src]
impl StructuralPartialEq for ImString
[src]
Auto Trait Implementations
impl RefUnwindSafe for ImString
impl Send for ImString
impl Sync for ImString
impl Unpin for ImString
impl UnwindSafe for ImString
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,
pub 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.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?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.
pub 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>,