pub enum AlgorithmWithDefaults {
Backtracking,
LinearScan,
}
Expand description
A choice of register allocation algorithm to run.
Variants§
Trait Implementations§
Source§impl Clone for AlgorithmWithDefaults
impl Clone for AlgorithmWithDefaults
Source§fn clone(&self) -> AlgorithmWithDefaults
fn clone(&self) -> AlgorithmWithDefaults
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 AlgorithmWithDefaults
impl Debug for AlgorithmWithDefaults
Source§impl PartialEq for AlgorithmWithDefaults
impl PartialEq for AlgorithmWithDefaults
impl Copy for AlgorithmWithDefaults
impl Eq for AlgorithmWithDefaults
impl StructuralPartialEq for AlgorithmWithDefaults
Auto Trait Implementations§
impl Freeze for AlgorithmWithDefaults
impl RefUnwindSafe for AlgorithmWithDefaults
impl Send for AlgorithmWithDefaults
impl Sync for AlgorithmWithDefaults
impl Unpin for AlgorithmWithDefaults
impl UnwindSafe for AlgorithmWithDefaults
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