pub struct CodeInfo {
pub code: &'static str,
pub name: &'static str,
pub short_description: &'static str,
pub full_description: &'static str,
pub remediation: &'static str,
pub help_anchor: &'static str,
pub help_uri: &'static str,
}Expand description
Metadata for a covguard error code.
Fields§
§code: &'static str§name: &'static str§short_description: &'static str§full_description: &'static str§remediation: &'static str§help_anchor: &'static str§help_uri: &'static strTrait Implementations§
Auto Trait Implementations§
impl Freeze for CodeInfo
impl RefUnwindSafe for CodeInfo
impl Send for CodeInfo
impl Sync for CodeInfo
impl Unpin for CodeInfo
impl UnsafeUnpin for CodeInfo
impl UnwindSafe for CodeInfo
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