#[repr(i32)]pub enum JournalLevel {
Show 14 variants
J_INSUPPRESSIBLE = -1,
J_NONE = 0,
J_ERROR = 1,
J_STRONGWARNING = 2,
J_SUMMARY = 3,
J_WARNING = 4,
J_ITERSUMMARY = 5,
J_DETAILED = 6,
J_MOREDETAILED = 7,
J_VECTOR = 8,
J_MOREVECTOR = 9,
J_MATRIX = 10,
J_MOREMATRIX = 11,
J_ALL = 12,
}Expand description
Print level. Numeric values match Ipopt’s EJournalLevel.
Variants§
J_INSUPPRESSIBLE = -1
J_NONE = 0
J_ERROR = 1
J_STRONGWARNING = 2
J_SUMMARY = 3
J_WARNING = 4
J_ITERSUMMARY = 5
J_DETAILED = 6
J_MOREDETAILED = 7
J_VECTOR = 8
J_MOREVECTOR = 9
J_MATRIX = 10
J_MOREMATRIX = 11
J_ALL = 12
Implementations§
Source§impl JournalLevel
impl JournalLevel
pub const J_LAST_LEVEL: i32 = 13
Trait Implementations§
Source§impl Clone for JournalLevel
impl Clone for JournalLevel
Source§fn clone(&self) -> JournalLevel
fn clone(&self) -> JournalLevel
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 moreSource§impl Debug for JournalLevel
impl Debug for JournalLevel
Source§impl Ord for JournalLevel
impl Ord for JournalLevel
Source§fn cmp(&self, other: &JournalLevel) -> Ordering
fn cmp(&self, other: &JournalLevel) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JournalLevel
impl PartialEq for JournalLevel
Source§fn eq(&self, other: &JournalLevel) -> bool
fn eq(&self, other: &JournalLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for JournalLevel
impl PartialOrd for JournalLevel
impl Copy for JournalLevel
impl Eq for JournalLevel
impl StructuralPartialEq for JournalLevel
Auto Trait Implementations§
impl Freeze for JournalLevel
impl RefUnwindSafe for JournalLevel
impl Send for JournalLevel
impl Sync for JournalLevel
impl Unpin for JournalLevel
impl UnsafeUnpin for JournalLevel
impl UnwindSafe for JournalLevel
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