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