pub struct UnknownSupport {
pub description: Option<String>,
pub severity: Option<Severity>,
pub issue: Option<String>,
}Expand description
Metadata for a key whose support level has not yet been determined.
Fields§
§description: Option<String>Short description for documentation tables (<= 50 chars), if known.
severity: Option<Severity>Severity estimate, if there is intuition about the impact.
issue: Option<String>GitHub issue tracking the investigation.
Trait Implementations§
Source§impl Clone for UnknownSupport
impl Clone for UnknownSupport
Source§fn clone(&self) -> UnknownSupport
fn clone(&self) -> UnknownSupport
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 UnknownSupport
impl Debug for UnknownSupport
Source§impl<'de> Deserialize<'de> for UnknownSupport
impl<'de> Deserialize<'de> for UnknownSupport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UnknownSupport
impl RefUnwindSafe for UnknownSupport
impl Send for UnknownSupport
impl Sync for UnknownSupport
impl Unpin for UnknownSupport
impl UnsafeUnpin for UnknownSupport
impl UnwindSafe for UnknownSupport
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