[][src]Struct rust_icu_sys::UCharIterator

#[repr(C)]pub struct UCharIterator {
    pub context: *const c_void,
    pub length: i32,
    pub start: i32,
    pub index: i32,
    pub limit: i32,
    pub reservedField: i32,
    pub getIndex: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: UCharIteratorOrigin) -> i32>,
    pub move_: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: i32, arg3: UCharIteratorOrigin) -> i32>,
    pub hasNext: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UBool>,
    pub hasPrevious: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UBool>,
    pub current: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UChar32>,
    pub next: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UChar32>,
    pub previous: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UChar32>,
    pub reservedFn: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: i32) -> i32>,
    pub getState: Option<unsafe extern "C" fn(arg1: *const UCharIterator) -> u32>,
    pub setState: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: u32, arg3: *mut UErrorCode)>,
}

Fields

context: *const c_voidlength: i32start: i32index: i32limit: i32reservedField: i32getIndex: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: UCharIteratorOrigin) -> i32>move_: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: i32, arg3: UCharIteratorOrigin) -> i32>hasNext: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UBool>hasPrevious: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UBool>current: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UChar32>next: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UChar32>previous: Option<unsafe extern "C" fn(arg1: *mut UCharIterator) -> UChar32>reservedFn: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: i32) -> i32>getState: Option<unsafe extern "C" fn(arg1: *const UCharIterator) -> u32>setState: Option<unsafe extern "C" fn(arg1: *mut UCharIterator, arg2: u32, arg3: *mut UErrorCode)>

Trait Implementations

impl Clone for UCharIterator[src]

impl Copy for UCharIterator[src]

impl Debug for UCharIterator[src]

impl Default for UCharIterator[src]

impl Hash for UCharIterator[src]

impl PartialEq<UCharIterator> for UCharIterator[src]

impl PartialOrd<UCharIterator> for UCharIterator[src]

impl StructuralPartialEq for UCharIterator[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.