#[repr(C)]pub struct Tcl_DString {
pub string: *mut c_char,
pub length: c_int,
pub spaceAvl: c_int,
pub staticSpace: [c_char; 200],
}
Fields§
§string: *mut c_char
§length: c_int
§spaceAvl: c_int
§staticSpace: [c_char; 200]
Trait Implementations§
Source§impl Clone for Tcl_DString
impl Clone for Tcl_DString
Source§fn clone(&self) -> Tcl_DString
fn clone(&self) -> Tcl_DString
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_DString
impl Debug for Tcl_DString
impl Copy for Tcl_DString
Auto Trait Implementations§
impl Freeze for Tcl_DString
impl RefUnwindSafe for Tcl_DString
impl !Send for Tcl_DString
impl !Sync for Tcl_DString
impl Unpin for Tcl_DString
impl UnwindSafe for Tcl_DString
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