[][src]Struct imgui::ImString

pub struct ImString(_);

Methods

impl ImString[src]

pub fn new<T: Into<String>>(value: T) -> ImString[src]

pub fn with_capacity(capacity: usize) -> ImString[src]

pub unsafe fn from_utf8_unchecked(v: Vec<u8>) -> ImString[src]

pub unsafe fn from_utf8_with_nul_unchecked(v: Vec<u8>) -> ImString[src]

pub fn clear(&mut self)[src]

pub fn push(&mut self, ch: char)[src]

pub fn push_str(&mut self, string: &str)[src]

pub fn capacity(&self) -> usize[src]

pub fn capacity_with_nul(&self) -> usize[src]

pub fn reserve(&mut self, additional: usize)[src]

pub fn reserve_exact(&mut self, additional: usize)[src]

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]

pub fn to_str(&self) -> &str[src]

Trait Implementations

impl Clone for ImString[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ImString[src]

impl PartialOrd<ImString> for ImString[src]

impl PartialEq<ImString> for ImString[src]

impl AsRef<ImStr> for ImString[src]

impl AsRef<str> for ImString[src]

impl<'a> Default for ImString[src]

impl Ord for ImString[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

default fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl From<String> for ImString[src]

impl<'a, T: ?Sized + AsRef<ImStr>> From<&'a T> for ImString[src]

impl Debug for ImString[src]

impl Index<RangeFull> for ImString[src]

type Output = ImStr

The returned type after indexing.

impl Deref for ImString[src]

type Target = ImStr

The resulting type after dereferencing.

impl Hash for ImString[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Borrow<ImStr> for ImString[src]

impl Borrow<str> for ImString[src]

Auto Trait Implementations

impl Send for ImString

impl Sync for ImString

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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