Struct rust_icu_sys::UConverterToUnicodeArgs
source · #[repr(C)]pub struct UConverterToUnicodeArgs {
pub size: u16,
pub flush: UBool,
pub converter: *mut UConverter,
pub source: *const c_char,
pub sourceLimit: *const c_char,
pub target: *mut UChar,
pub targetLimit: *const UChar,
pub offsets: *mut i32,
}
Fields§
§size: u16
§flush: UBool
§converter: *mut UConverter
§source: *const c_char
§sourceLimit: *const c_char
§target: *mut UChar
§targetLimit: *const UChar
§offsets: *mut i32
Trait Implementations§
source§impl Clone for UConverterToUnicodeArgs
impl Clone for UConverterToUnicodeArgs
source§fn clone(&self) -> UConverterToUnicodeArgs
fn clone(&self) -> UConverterToUnicodeArgs
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UConverterToUnicodeArgs
impl Debug for UConverterToUnicodeArgs
source§impl Default for UConverterToUnicodeArgs
impl Default for UConverterToUnicodeArgs
source§impl Hash for UConverterToUnicodeArgs
impl Hash for UConverterToUnicodeArgs
source§impl PartialEq for UConverterToUnicodeArgs
impl PartialEq for UConverterToUnicodeArgs
source§fn eq(&self, other: &UConverterToUnicodeArgs) -> bool
fn eq(&self, other: &UConverterToUnicodeArgs) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for UConverterToUnicodeArgs
impl PartialOrd for UConverterToUnicodeArgs
source§fn partial_cmp(&self, other: &UConverterToUnicodeArgs) -> Option<Ordering>
fn partial_cmp(&self, other: &UConverterToUnicodeArgs) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for UConverterToUnicodeArgs
impl StructuralPartialEq for UConverterToUnicodeArgs
Auto Trait Implementations§
impl RefUnwindSafe for UConverterToUnicodeArgs
impl !Send for UConverterToUnicodeArgs
impl !Sync for UConverterToUnicodeArgs
impl Unpin for UConverterToUnicodeArgs
impl UnwindSafe for UConverterToUnicodeArgs
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more