#[repr(C)]pub struct regmatch_slab {
pub states: [regmatch_state; 26],
pub prev: *mut regmatch_slab,
pub next: *mut regmatch_slab,
}
Fields§
§states: [regmatch_state; 26]
§prev: *mut regmatch_slab
§next: *mut regmatch_slab
Trait Implementations§
Source§impl Clone for regmatch_slab
impl Clone for regmatch_slab
Source§fn clone(&self) -> regmatch_slab
fn clone(&self) -> regmatch_slab
Returns a copy 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 regmatch_slab
impl Debug for regmatch_slab
impl Copy for regmatch_slab
Auto Trait Implementations§
impl Freeze for regmatch_slab
impl RefUnwindSafe for regmatch_slab
impl !Send for regmatch_slab
impl !Sync for regmatch_slab
impl Unpin for regmatch_slab
impl UnwindSafe for regmatch_slab
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