pub enum LoweringMode {
Direct,
}Expand description
Lowering strategy used by code generators for a runtime function.
Variants§
Direct
Emit a direct host call with no adapter trampoline.
Trait Implementations§
Source§impl Clone for LoweringMode
impl Clone for LoweringMode
Source§fn clone(&self) -> LoweringMode
fn clone(&self) -> LoweringMode
Returns a copy 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 LoweringMode
impl Debug for LoweringMode
Source§impl PartialEq for LoweringMode
impl PartialEq for LoweringMode
impl Copy for LoweringMode
impl Eq for LoweringMode
impl StructuralPartialEq for LoweringMode
Auto Trait Implementations§
impl Freeze for LoweringMode
impl RefUnwindSafe for LoweringMode
impl Send for LoweringMode
impl Sync for LoweringMode
impl Unpin for LoweringMode
impl UnwindSafe for LoweringMode
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