Struct rust_icu_sys::UReplaceableCallbacks[][src]

#[repr(C)]
pub struct UReplaceableCallbacks { pub length: Option<unsafe extern "C" fn(rep: *const UReplaceable) -> i32>, pub charAt: Option<unsafe extern "C" fn(rep: *const UReplaceable, offset: i32) -> UChar>, pub char32At: Option<unsafe extern "C" fn(rep: *const UReplaceable, offset: i32) -> UChar32>, pub replace: Option<unsafe extern "C" fn(rep: *mut UReplaceable, start: i32, limit: i32, text: *const UChar, textLength: i32)>, pub extract: Option<unsafe extern "C" fn(rep: *mut UReplaceable, start: i32, limit: i32, dst: *mut UChar)>, pub copy: Option<unsafe extern "C" fn(rep: *mut UReplaceable, start: i32, limit: i32, dest: i32)>, }

Fields

length: Option<unsafe extern "C" fn(rep: *const UReplaceable) -> i32>charAt: Option<unsafe extern "C" fn(rep: *const UReplaceable, offset: i32) -> UChar>char32At: Option<unsafe extern "C" fn(rep: *const UReplaceable, offset: i32) -> UChar32>replace: Option<unsafe extern "C" fn(rep: *mut UReplaceable, start: i32, limit: i32, text: *const UChar, textLength: i32)>extract: Option<unsafe extern "C" fn(rep: *mut UReplaceable, start: i32, limit: i32, dst: *mut UChar)>copy: Option<unsafe extern "C" fn(rep: *mut UReplaceable, start: i32, limit: i32, dest: i32)>

Trait Implementations

impl Clone for UReplaceableCallbacks[src]

impl Copy for UReplaceableCallbacks[src]

impl Debug for UReplaceableCallbacks[src]

impl Default for UReplaceableCallbacks[src]

impl Hash for UReplaceableCallbacks[src]

impl PartialEq<UReplaceableCallbacks> for UReplaceableCallbacks[src]

impl PartialOrd<UReplaceableCallbacks> for UReplaceableCallbacks[src]

impl StructuralPartialEq for UReplaceableCallbacks[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.