#[repr(C)]pub struct Tcl_CmdInfo {
pub isNativeObjectProc: c_int,
pub objProc: Tcl_ObjCmdProc,
pub objClientData: ClientData,
pub proc_: Tcl_CmdProc,
pub clientData: ClientData,
pub deleteProc: Tcl_CmdDeleteProc,
pub deleteData: ClientData,
pub namespacePtr: *mut Tcl_Namespace,
}Fields§
§isNativeObjectProc: c_int§objProc: Tcl_ObjCmdProc§objClientData: ClientData§proc_: Tcl_CmdProc§clientData: ClientData§deleteProc: Tcl_CmdDeleteProc§deleteData: ClientData§namespacePtr: *mut Tcl_NamespaceTrait Implementations§
Source§impl Clone for Tcl_CmdInfo
impl Clone for Tcl_CmdInfo
Source§fn clone(&self) -> Tcl_CmdInfo
fn clone(&self) -> Tcl_CmdInfo
Returns a duplicate 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 Tcl_CmdInfo
impl Debug for Tcl_CmdInfo
impl Copy for Tcl_CmdInfo
Auto Trait Implementations§
impl Freeze for Tcl_CmdInfo
impl RefUnwindSafe for Tcl_CmdInfo
impl !Send for Tcl_CmdInfo
impl !Sync for Tcl_CmdInfo
impl Unpin for Tcl_CmdInfo
impl UnwindSafe for Tcl_CmdInfo
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