pub struct DiffObjConfig {Show 13 fields
pub relax_reloc_diffs: bool,
pub space_between_args: bool,
pub combine_data_sections: bool,
pub x86_formatter: X86Formatter,
pub mips_abi: MipsAbi,
pub mips_instr_category: MipsInstrCategory,
pub arm_arch_version: ArmArchVersion,
pub arm_unified_syntax: bool,
pub arm_av_registers: bool,
pub arm_r9_usage: ArmR9Usage,
pub arm_sl_usage: bool,
pub arm_fp_usage: bool,
pub arm_ip_usage: bool,
}
Fields§
§relax_reloc_diffs: bool
§space_between_args: bool
§combine_data_sections: bool
§x86_formatter: X86Formatter
§mips_abi: MipsAbi
§mips_instr_category: MipsInstrCategory
§arm_arch_version: ArmArchVersion
§arm_unified_syntax: bool
§arm_av_registers: bool
§arm_r9_usage: ArmR9Usage
§arm_sl_usage: bool
§arm_fp_usage: bool
§arm_ip_usage: bool
Implementations§
Trait Implementations§
source§impl Clone for DiffObjConfig
impl Clone for DiffObjConfig
source§fn clone(&self) -> DiffObjConfig
fn clone(&self) -> DiffObjConfig
Returns a copy of the value. Read more
1.6.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 DiffObjConfig
impl Debug for DiffObjConfig
source§impl Default for DiffObjConfig
impl Default for DiffObjConfig
source§impl<'de> Deserialize<'de> for DiffObjConfigwhere
DiffObjConfig: Default,
impl<'de> Deserialize<'de> for DiffObjConfigwhere
DiffObjConfig: Default,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
impl FromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
source§impl OptionFromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
source§impl PartialEq for DiffObjConfig
impl PartialEq for DiffObjConfig
source§impl RefFromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
impl RefFromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The wasm ABI type references to
Self
are recovered from.source§type Anchor = SelfOwner<DiffObjConfig>
type Anchor = SelfOwner<DiffObjConfig>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.source§impl Serialize for DiffObjConfig
impl Serialize for DiffObjConfig
source§impl Tsify for DiffObjConfig
impl Tsify for DiffObjConfig
const DECL: &'static str = "export interface DiffObjConfig {\n relax_reloc_diffs?: boolean;\n space_between_args?: boolean;\n combine_data_sections?: boolean;\n x86_formatter?: X86Formatter;\n mips_abi?: MipsAbi;\n mips_instr_category?: MipsInstrCategory;\n arm_arch_version?: ArmArchVersion;\n arm_unified_syntax?: boolean;\n arm_av_registers?: boolean;\n arm_r9_usage?: ArmR9Usage;\n arm_sl_usage?: boolean;\n arm_fp_usage?: boolean;\n arm_ip_usage?: boolean;\n}"
const SERIALIZATION_CONFIG: SerializationConfig = _
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
source§impl VectorFromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for DiffObjConfigwhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
source§impl WasmDescribeVector for DiffObjConfig
impl WasmDescribeVector for DiffObjConfig
impl Eq for DiffObjConfig
impl StructuralPartialEq for DiffObjConfig
Auto Trait Implementations§
impl Freeze for DiffObjConfig
impl RefUnwindSafe for DiffObjConfig
impl Send for DiffObjConfig
impl Sync for DiffObjConfig
impl Unpin for DiffObjConfig
impl UnwindSafe for DiffObjConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.