#[repr(C)]pub struct CharRange {
pub len: c_int,
pub size: c_int,
pub points: *mut u32,
pub mem_opaque: *mut c_void,
pub realloc_func: Option<unsafe extern "C" fn(opaque: *mut c_void, ptr: *mut c_void, size: usize) -> *mut c_void>,
}
Fields§
§len: c_int
§size: c_int
§points: *mut u32
§mem_opaque: *mut c_void
§realloc_func: Option<unsafe extern "C" fn(opaque: *mut c_void, ptr: *mut c_void, size: usize) -> *mut c_void>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CharRange
impl RefUnwindSafe for CharRange
impl !Send for CharRange
impl !Sync for CharRange
impl Unpin for CharRange
impl UnwindSafe for CharRange
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