pub struct FindingEntry {
pub severity: &'static str,
pub meaning: &'static str,
pub what_to_try: &'static str,
pub see_also: &'static [&'static str],
}Expand description
One diagnose-finding entry returned by [explain_finding].
Fields§
§severity: &'static str§meaning: &'static str§what_to_try: &'static str§see_also: &'static [&'static str]Trait Implementations§
Source§impl Clone for FindingEntry
impl Clone for FindingEntry
Source§fn clone(&self) -> FindingEntry
fn clone(&self) -> FindingEntry
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 FindingEntry
impl Debug for FindingEntry
Auto Trait Implementations§
impl Freeze for FindingEntry
impl RefUnwindSafe for FindingEntry
impl Send for FindingEntry
impl Sync for FindingEntry
impl Unpin for FindingEntry
impl UnsafeUnpin for FindingEntry
impl UnwindSafe for FindingEntry
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