#[repr(C)]pub struct NodePtString {
pub rb: u32,
pub left: *mut NodePtString,
pub right: *mut NodePtString,
pub data: *mut String,
}Fields§
§rb: u32§left: *mut NodePtString§right: *mut NodePtString§data: *mut StringTrait Implementations§
Source§impl Clone for NodePtString
impl Clone for NodePtString
Source§fn clone(&self) -> NodePtString
fn clone(&self) -> NodePtString
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 NodePtString
impl Debug for NodePtString
impl Copy for NodePtString
Auto Trait Implementations§
impl Freeze for NodePtString
impl RefUnwindSafe for NodePtString
impl !Send for NodePtString
impl !Sync for NodePtString
impl Unpin for NodePtString
impl UnwindSafe for NodePtString
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