pub struct ProblemGroup {
pub name: &'static str,
pub display_name: &'static str,
pub parent: Option<Box<ProblemGroup>>,
}
Fields§
§name: &'static str
§display_name: &'static str
§parent: Option<Box<ProblemGroup>>
Trait Implementations§
Source§impl Clone for ProblemGroup
impl Clone for ProblemGroup
Source§fn clone(&self) -> ProblemGroup
fn clone(&self) -> ProblemGroup
Returns a copy 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 ProblemGroup
impl Debug for ProblemGroup
Source§impl Default for &ProblemGroup
impl Default for &ProblemGroup
Source§impl Default for ProblemGroup
impl Default for ProblemGroup
Source§fn default() -> ProblemGroup
fn default() -> ProblemGroup
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProblemGroup
impl RefUnwindSafe for ProblemGroup
impl Send for ProblemGroup
impl Sync for ProblemGroup
impl Unpin for ProblemGroup
impl UnwindSafe for ProblemGroup
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