pub enum BranchPredictability {
AlwaysTaken,
AlwaysNotTaken,
MostlyTaken(f64),
MostlyNotTaken(f64),
Unpredictable,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BranchPredictability
impl Clone for BranchPredictability
Source§fn clone(&self) -> BranchPredictability
fn clone(&self) -> BranchPredictability
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 BranchPredictability
impl RefUnwindSafe for BranchPredictability
impl Send for BranchPredictability
impl Sync for BranchPredictability
impl Unpin for BranchPredictability
impl UnsafeUnpin for BranchPredictability
impl UnwindSafe for BranchPredictability
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