pub struct Unsupported {
pub pipelines: PipelineAffinity,
pub description: String,
pub documentation: Option<String>,
pub severity: Severity,
pub planned: bool,
pub issue: Option<String>,
}Expand description
Metadata for an unsupported configuration key.
Fields§
§pipelines: PipelineAffinityPipelines affected by the lack of support.
description: StringShort description for documentation tables (<= 50 chars).
documentation: Option<String>Longer explanation of why it is unsupported and future plans.
severity: SeverityHow severe the lack of support is.
planned: boolWhether support is planned. When true, issue must be present.
issue: Option<String>GitHub issue tracking number.
Trait Implementations§
Source§impl Clone for Unsupported
impl Clone for Unsupported
Source§fn clone(&self) -> Unsupported
fn clone(&self) -> Unsupported
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 Unsupported
impl Debug for Unsupported
Source§impl<'de> Deserialize<'de> for Unsupported
impl<'de> Deserialize<'de> for Unsupported
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 Unsupported
impl RefUnwindSafe for Unsupported
impl Send for Unsupported
impl Sync for Unsupported
impl Unpin for Unsupported
impl UnsafeUnpin for Unsupported
impl UnwindSafe for Unsupported
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