pub enum RecommendationKind {
SpecMissingCommentary,
SpecMissingEffectiveDate,
DataMissingHelp {
data: String,
},
TextDataWithoutOptions {
data: String,
},
OpenInputWithoutSuggestion {
data: String,
},
VetoAsRejectionCascade {
rule: String,
},
}Expand description
Kind of structural quality Recommendation.
Variants§
SpecMissingCommentary
SpecMissingEffectiveDate
DataMissingHelp
TextDataWithoutOptions
OpenInputWithoutSuggestion
VetoAsRejectionCascade
Trait Implementations§
Source§impl Clone for RecommendationKind
impl Clone for RecommendationKind
Source§fn clone(&self) -> RecommendationKind
fn clone(&self) -> RecommendationKind
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 RecommendationKind
impl Debug for RecommendationKind
Source§impl<'de> Deserialize<'de> for RecommendationKind
impl<'de> Deserialize<'de> for RecommendationKind
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
impl Eq for RecommendationKind
Source§impl PartialEq for RecommendationKind
impl PartialEq for RecommendationKind
Source§impl Serialize for RecommendationKind
impl Serialize for RecommendationKind
impl StructuralPartialEq for RecommendationKind
Auto Trait Implementations§
impl Freeze for RecommendationKind
impl RefUnwindSafe for RecommendationKind
impl Send for RecommendationKind
impl Sync for RecommendationKind
impl Unpin for RecommendationKind
impl UnsafeUnpin for RecommendationKind
impl UnwindSafe for RecommendationKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.