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