#[repr(C)]pub struct Tcl_EncodingType {
pub encodingName: *const c_char,
pub toUtfProc: Tcl_EncodingConvertProc,
pub fromUtfProc: Tcl_EncodingConvertProc,
pub freeProc: Tcl_EncodingFreeProc,
pub clientData: ClientData,
pub nullSize: c_int,
}
Fields§
§encodingName: *const c_char
§toUtfProc: Tcl_EncodingConvertProc
§fromUtfProc: Tcl_EncodingConvertProc
§freeProc: Tcl_EncodingFreeProc
§clientData: ClientData
§nullSize: c_int
Trait Implementations§
Source§impl Clone for Tcl_EncodingType
impl Clone for Tcl_EncodingType
Source§fn clone(&self) -> Tcl_EncodingType
fn clone(&self) -> Tcl_EncodingType
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 Tcl_EncodingType
impl Debug for Tcl_EncodingType
impl Copy for Tcl_EncodingType
Auto Trait Implementations§
impl Freeze for Tcl_EncodingType
impl RefUnwindSafe for Tcl_EncodingType
impl !Send for Tcl_EncodingType
impl !Sync for Tcl_EncodingType
impl Unpin for Tcl_EncodingType
impl UnwindSafe for Tcl_EncodingType
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