pub struct Classification {
pub support_level: SupportLevel,
pub is_default: bool,
pub pipeline_affinity: PipelineAffinity,
}Expand description
Result of classifying a single config key/value pair against the registry.
Fields§
§support_level: SupportLevelThe level at which this config key is supported by Saluki.
is_default: boolWhether the value matches the schema default.
pipeline_affinity: PipelineAffinityWhich pipelines this key’s incompatibility warning applies to.
Auto Trait Implementations§
impl Freeze for Classification
impl RefUnwindSafe for Classification
impl Send for Classification
impl Sync for Classification
impl Unpin for Classification
impl UnsafeUnpin for Classification
impl UnwindSafe for Classification
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