Struct yara_sys::YR_MATCH[][src]

#[repr(C)]
pub struct YR_MATCH { pub base: i64, pub offset: i64, pub match_length: i32, pub data_length: i32, pub data: *const u8, pub prev: *mut YR_MATCH, pub next: *mut YR_MATCH, pub chain_length: i32, pub is_private: bool, }

Fields

base: i64offset: i64match_length: i32data_length: i32data: *const u8prev: *mut YR_MATCHnext: *mut YR_MATCHchain_length: i32is_private: bool

Trait Implementations

impl Clone for YR_MATCH[src]

impl Copy for YR_MATCH[src]

impl Debug for YR_MATCH[src]

Auto Trait Implementations

impl RefUnwindSafe for YR_MATCH

impl !Send for YR_MATCH

impl !Sync for YR_MATCH

impl Unpin for YR_MATCH

impl UnwindSafe for YR_MATCH

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.