pub enum PageFixpointOutcome {
Converged {
iterations: u32,
},
NotConverged {
iterations: u32,
},
}Expand description
The result of driving page references to a fixpoint.
Variants§
Converged
The label→page map stabilized; the rendered page numbers are final.
NotConverged
The map never settled: it oscillated, or the iteration cap was hit.
The caller keeps the last computed page numbers and should report
MOS0047.
Trait Implementations§
Source§impl Clone for PageFixpointOutcome
impl Clone for PageFixpointOutcome
Source§fn clone(&self) -> PageFixpointOutcome
fn clone(&self) -> PageFixpointOutcome
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 PageFixpointOutcome
impl Debug for PageFixpointOutcome
Source§impl PartialEq for PageFixpointOutcome
impl PartialEq for PageFixpointOutcome
impl Copy for PageFixpointOutcome
impl Eq for PageFixpointOutcome
impl StructuralPartialEq for PageFixpointOutcome
Auto Trait Implementations§
impl Freeze for PageFixpointOutcome
impl RefUnwindSafe for PageFixpointOutcome
impl Send for PageFixpointOutcome
impl Sync for PageFixpointOutcome
impl Unpin for PageFixpointOutcome
impl UnsafeUnpin for PageFixpointOutcome
impl UnwindSafe for PageFixpointOutcome
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