IStringTrait

Trait IStringTrait 

Source
pub trait IStringTrait {
    // Required methods
    unsafe fn setText8(&self, text: *const char8);
    unsafe fn setText16(&self, text: *const char16);
    unsafe fn getText8(&self) -> *const char8;
    unsafe fn getText16(&self) -> *const char16;
    unsafe fn take(&self, s: *mut c_void, isWide: bool);
    unsafe fn isWideString(&self) -> bool;
}

Required Methods§

Source

unsafe fn setText8(&self, text: *const char8)

Source

unsafe fn setText16(&self, text: *const char16)

Source

unsafe fn getText8(&self) -> *const char8

Source

unsafe fn getText16(&self) -> *const char16

Source

unsafe fn take(&self, s: *mut c_void, isWide: bool)

Source

unsafe fn isWideString(&self) -> bool

Implementors§

Source§

impl<P> IStringTrait for P