pub enum IterateVariant {
Summary,
Full,
}Expand description
Payload-detail variant for the iterate dump category.
Iterate trajectories come in two sizes. Summary is small and
always cheap (m bits of active-set bitmap + a handful of scalars
per iteration); Full adds the full x and slack vectors per
iteration, which is the studio-grade payload but can run into
hundreds of MB on large problems.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IterateVariant
impl Clone for IterateVariant
Source§fn clone(&self) -> IterateVariant
fn clone(&self) -> IterateVariant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IterateVariant
Source§impl Debug for IterateVariant
impl Debug for IterateVariant
Source§impl Default for IterateVariant
impl Default for IterateVariant
Source§fn default() -> IterateVariant
fn default() -> IterateVariant
Returns the “default value” for a type. Read more
impl Eq for IterateVariant
Source§impl PartialEq for IterateVariant
impl PartialEq for IterateVariant
Source§fn eq(&self, other: &IterateVariant) -> bool
fn eq(&self, other: &IterateVariant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IterateVariant
Auto Trait Implementations§
impl Freeze for IterateVariant
impl RefUnwindSafe for IterateVariant
impl Send for IterateVariant
impl Sync for IterateVariant
impl Unpin for IterateVariant
impl UnsafeUnpin for IterateVariant
impl UnwindSafe for IterateVariant
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