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