#[repr(C)]pub struct mdbsargtree {
pub op: c_int,
pub col: *mut MdbColumn,
pub val_type: c_uchar,
pub value: MdbAny,
pub parent: *mut c_void,
pub left: *mut MdbSargNode,
pub right: *mut MdbSargNode,
}Fields§
§op: c_int§col: *mut MdbColumn§val_type: c_uchar§value: MdbAny§parent: *mut c_void§left: *mut MdbSargNode§right: *mut MdbSargNodeTrait Implementations§
Source§impl Clone for mdbsargtree
impl Clone for mdbsargtree
Source§fn clone(&self) -> mdbsargtree
fn clone(&self) -> mdbsargtree
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 moreimpl Copy for mdbsargtree
Auto Trait Implementations§
impl Freeze for mdbsargtree
impl RefUnwindSafe for mdbsargtree
impl !Send for mdbsargtree
impl !Sync for mdbsargtree
impl Unpin for mdbsargtree
impl UnwindSafe for mdbsargtree
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