#[repr(C)]pub struct YR_OBJECT_ARRAY {
pub canary: c_int,
pub type_: i8,
pub identifier: *const c_char,
pub parent: *mut YR_OBJECT,
pub data: *mut c_void,
pub prototype_item: *mut YR_OBJECT,
pub items: *mut YR_ARRAY_ITEMS,
}Fields§
§canary: c_int§type_: i8§identifier: *const c_char§parent: *mut YR_OBJECT§data: *mut c_void§prototype_item: *mut YR_OBJECT§items: *mut YR_ARRAY_ITEMSTrait Implementations§
Source§impl Clone for YR_OBJECT_ARRAY
impl Clone for YR_OBJECT_ARRAY
Source§fn clone(&self) -> YR_OBJECT_ARRAY
fn clone(&self) -> YR_OBJECT_ARRAY
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 moreSource§impl Debug for YR_OBJECT_ARRAY
impl Debug for YR_OBJECT_ARRAY
impl Copy for YR_OBJECT_ARRAY
Auto Trait Implementations§
impl Freeze for YR_OBJECT_ARRAY
impl RefUnwindSafe for YR_OBJECT_ARRAY
impl !Send for YR_OBJECT_ARRAY
impl !Sync for YR_OBJECT_ARRAY
impl Unpin for YR_OBJECT_ARRAY
impl UnsafeUnpin for YR_OBJECT_ARRAY
impl UnwindSafe for YR_OBJECT_ARRAY
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