pub struct FfiFeatureFlags {
pub support_varargs: bool,
pub support_callbacks: bool,
pub support_bitfields: bool,
pub support_anonymous: bool,
pub support_packed: bool,
pub support_aligned: bool,
}Expand description
FFI feature flags
Fields§
§support_varargs: bool§support_callbacks: bool§support_bitfields: bool§support_anonymous: bool§support_packed: bool§support_aligned: boolTrait Implementations§
Source§impl Clone for FfiFeatureFlags
impl Clone for FfiFeatureFlags
Source§fn clone(&self) -> FfiFeatureFlags
fn clone(&self) -> FfiFeatureFlags
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 FfiFeatureFlags
impl Debug for FfiFeatureFlags
Source§impl Default for FfiFeatureFlags
impl Default for FfiFeatureFlags
Source§fn default() -> FfiFeatureFlags
fn default() -> FfiFeatureFlags
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FfiFeatureFlags
impl RefUnwindSafe for FfiFeatureFlags
impl Send for FfiFeatureFlags
impl Sync for FfiFeatureFlags
impl Unpin for FfiFeatureFlags
impl UnsafeUnpin for FfiFeatureFlags
impl UnwindSafe for FfiFeatureFlags
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