pub enum InlineHint {
AlwaysInline,
NeverInline,
InlineWithBenefit(f64),
}Variants§
Trait Implementations§
Source§impl Clone for InlineHint
impl Clone for InlineHint
Source§fn clone(&self) -> InlineHint
fn clone(&self) -> InlineHint
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 moreAuto Trait Implementations§
impl Freeze for InlineHint
impl RefUnwindSafe for InlineHint
impl Send for InlineHint
impl Sync for InlineHint
impl Unpin for InlineHint
impl UnsafeUnpin for InlineHint
impl UnwindSafe for InlineHint
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