#[repr(C)]pub struct _xmlCharEncodingHandler {
pub name: *mut c_char,
pub input: xmlCharEncodingInputFunc,
pub output: xmlCharEncodingOutputFunc,
pub iconv_in: iconv_t,
pub iconv_out: iconv_t,
pub uconv_in: *mut _uconv_t,
pub uconv_out: *mut _uconv_t,
}
Fields§
§name: *mut c_char
§input: xmlCharEncodingInputFunc
§output: xmlCharEncodingOutputFunc
§iconv_in: iconv_t
§iconv_out: iconv_t
§uconv_in: *mut _uconv_t
§uconv_out: *mut _uconv_t
Trait Implementations§
Source§impl Clone for _xmlCharEncodingHandler
impl Clone for _xmlCharEncodingHandler
Source§fn clone(&self) -> _xmlCharEncodingHandler
fn clone(&self) -> _xmlCharEncodingHandler
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _xmlCharEncodingHandler
impl Debug for _xmlCharEncodingHandler
impl Copy for _xmlCharEncodingHandler
Auto Trait Implementations§
impl Freeze for _xmlCharEncodingHandler
impl RefUnwindSafe for _xmlCharEncodingHandler
impl !Send for _xmlCharEncodingHandler
impl !Sync for _xmlCharEncodingHandler
impl Unpin for _xmlCharEncodingHandler
impl UnwindSafe for _xmlCharEncodingHandler
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