pub struct BuiltinInfo {
pub name: &'static str,
pub n_variables: i32,
pub n_constraints: i32,
pub class: &'static str,
pub notes: &'static str,
}Expand description
Metadata for a CLI --problem <name> builtin.
Fields§
§name: &'static str§n_variables: i32§n_constraints: i32§class: &'static str§notes: &'static strTrait Implementations§
Source§impl Clone for BuiltinInfo
impl Clone for BuiltinInfo
Source§fn clone(&self) -> BuiltinInfo
fn clone(&self) -> BuiltinInfo
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 BuiltinInfo
impl Debug for BuiltinInfo
Auto Trait Implementations§
impl Freeze for BuiltinInfo
impl RefUnwindSafe for BuiltinInfo
impl Send for BuiltinInfo
impl Sync for BuiltinInfo
impl Unpin for BuiltinInfo
impl UnsafeUnpin for BuiltinInfo
impl UnwindSafe for BuiltinInfo
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