#[repr(C)]pub struct rb_memory_view_item_component_t {
pub format: c_char,
pub native_size_p: bool,
pub little_endian_p: bool,
pub offset: size_t,
pub size: size_t,
pub repeat: size_t,
}Expand description
Fields§
§format: c_char§native_size_p: bool§:FIXME: what is a “native” size is unclear.
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.3.8
little_endian_p: bool§offset: size_t§size: size_t§repeat: size_t§How many numbers of components are there. For instance “CCC”’s repeat is 3.
Generated by rb-sys for Ruby mri-x86_64-linux-gnu-3.3.8
Trait Implementations§
Source§impl Clone for rb_memory_view_item_component_t
impl Clone for rb_memory_view_item_component_t
Source§fn clone(&self) -> rb_memory_view_item_component_t
fn clone(&self) -> rb_memory_view_item_component_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for rb_memory_view_item_component_t
impl Eq for rb_memory_view_item_component_t
impl StructuralPartialEq for rb_memory_view_item_component_t
Auto Trait Implementations§
impl Freeze for rb_memory_view_item_component_t
impl RefUnwindSafe for rb_memory_view_item_component_t
impl Send for rb_memory_view_item_component_t
impl Sync for rb_memory_view_item_component_t
impl Unpin for rb_memory_view_item_component_t
impl UnsafeUnpin for rb_memory_view_item_component_t
impl UnwindSafe for rb_memory_view_item_component_t
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