Struct yara_sys::YR_ARENA[][src]

#[repr(C)]
pub struct YR_ARENA { pub xrefs: u32, pub num_buffers: u32, pub buffers: [YR_ARENA_BUFFER; 16], pub initial_buffer_size: size_t, pub reloc_list_head: *mut YR_RELOC, pub reloc_list_tail: *mut YR_RELOC, }

Fields

xrefs: u32num_buffers: u32buffers: [YR_ARENA_BUFFER; 16]initial_buffer_size: size_treloc_list_head: *mut YR_RELOCreloc_list_tail: *mut YR_RELOC

Trait Implementations

impl Clone for YR_ARENA[src]

impl Copy for YR_ARENA[src]

impl Debug for YR_ARENA[src]

Auto Trait Implementations

impl RefUnwindSafe for YR_ARENA

impl !Send for YR_ARENA

impl !Sync for YR_ARENA

impl Unpin for YR_ARENA

impl UnwindSafe for YR_ARENA

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.