pub struct FfiStructField {
pub name: String,
pub field_type: String,
pub bit_width: Option<u8>,
pub offset_bytes: Option<u64>,
pub attrs: Vec<String>,
}Expand description
FFI struct field
Fields§
§name: String§field_type: String§bit_width: Option<u8>§offset_bytes: Option<u64>§attrs: Vec<String>Trait Implementations§
Source§impl Clone for FfiStructField
impl Clone for FfiStructField
Source§fn clone(&self) -> FfiStructField
fn clone(&self) -> FfiStructField
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 FfiStructField
impl Debug for FfiStructField
Auto Trait Implementations§
impl Freeze for FfiStructField
impl RefUnwindSafe for FfiStructField
impl Send for FfiStructField
impl Sync for FfiStructField
impl Unpin for FfiStructField
impl UnsafeUnpin for FfiStructField
impl UnwindSafe for FfiStructField
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