Trait NSString

Source
pub trait NSString: Sized {
    // Required methods
    unsafe fn stringByAppendingString_(self, other: id) -> id;
    unsafe fn init_str(self, string: &str) -> Self;
    unsafe fn UTF8String(self) -> *const c_char;
    unsafe fn len(self) -> usize;
    unsafe fn isEqualToString(self, string: &str) -> bool;
    unsafe fn substringWithRange(self, range: NSRange) -> id;

    // Provided method
    unsafe fn alloc(_: Self) -> id { ... }
}

Required Methods§

Source

unsafe fn stringByAppendingString_(self, other: id) -> id

Source

unsafe fn init_str(self, string: &str) -> Self

Source

unsafe fn UTF8String(self) -> *const c_char

Source

unsafe fn len(self) -> usize

Source

unsafe fn isEqualToString(self, string: &str) -> bool

Source

unsafe fn substringWithRange(self, range: NSRange) -> id

Provided Methods§

Source

unsafe fn alloc(_: Self) -> id

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§