Struct regmatch_t
#[repr(C)]
pub struct regmatch_t { pub rm_so: regoff_t, pub rm_eo: regoff_t }
Fields
rm_so: regoff_trm_eo: regoff_t
Trait Implementations
impl Clone for regmatch_t
fn clone(&self) -> regmatch_t
impl Copy for regmatch_t
impl Debug for regmatch_t
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for regmatch_t
impl Hash for regmatch_t
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for regmatch_t
fn eq(&self, other: ®match_t) -> bool
impl StructuralPartialEq for regmatch_t
Auto Trait Implementations
impl Freeze for regmatch_t
impl RefUnwindSafe for regmatch_t
impl Send for regmatch_t
impl Sync for regmatch_t
impl Unpin for regmatch_t
impl UnsafeUnpin for regmatch_t
impl UnwindSafe for regmatch_t
Blanket Implementations
impl<T> Any for regmatch_t
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for regmatch_t
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for regmatch_t
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for regmatch_t
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for regmatch_t
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for regmatch_t
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for regmatch_t
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for regmatch_t
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>