[][src]Struct nuklear::TextEdit

#[repr(C)]pub struct TextEdit { /* fields omitted */ }

Implementations

impl TextEdit[src]

pub fn init(&mut self, arg2: &mut Allocator, size: Size)[src]

pub fn text(&mut self, arg2: &str)[src]

pub fn delete(&mut self, where_: u32, len: u32)[src]

pub fn delete_selection(&mut self)[src]

pub fn select_all(&mut self)[src]

pub fn cut(&mut self) -> bool[src]

pub fn paste(&mut self, arg2: &str) -> bool[src]

pub fn undo(&mut self)[src]

pub fn redo(&mut self)[src]

Trait Implementations

impl AsMut<TextEdit> for nk_text_edit[src]

impl AsMut<nk_text_edit> for TextEdit[src]

impl AsRef<TextEdit> for nk_text_edit[src]

impl AsRef<nk_text_edit> for TextEdit[src]

impl Default for TextEdit[src]

impl Drop for TextEdit[src]

Auto Trait Implementations

impl RefUnwindSafe for TextEdit

impl !Send for TextEdit

impl !Sync for TextEdit

impl Unpin for TextEdit

impl UnwindSafe for TextEdit

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.