pub enum BuiltInRuleSpec {
ForbidDependencies {
metadata: RuleMetadata,
from: SelectorSpec,
to: SelectorSpec,
scopes: DependencyScopes,
},
OnlyDependencies {
metadata: RuleMetadata,
from: SelectorSpec,
allowed: SelectorSpec,
scopes: DependencyScopes,
allow_toolchain: bool,
allow_self: bool,
},
Layers {
metadata: RuleMetadata,
layers: Vec<NamedSelectorSpec>,
dependencies: Vec<LayerDependencySpec>,
scopes: DependencyScopes,
},
NoCycles {
metadata: RuleMetadata,
within: SelectorSpec,
grouping: CycleGrouping,
scopes: DependencyScopes,
},
}Variants§
ForbidDependencies
OnlyDependencies
Layers
Fields
§
metadata: RuleMetadata§
layers: Vec<NamedSelectorSpec>§
dependencies: Vec<LayerDependencySpec>§
scopes: DependencyScopesNoCycles
Implementations§
Source§impl BuiltInRuleSpec
impl BuiltInRuleSpec
pub fn metadata(&self) -> &RuleMetadata
pub fn metadata_mut(&mut self) -> &mut RuleMetadata
pub fn compile(&self) -> Result<Rule, RuleBuildError>
Trait Implementations§
Source§impl Clone for BuiltInRuleSpec
impl Clone for BuiltInRuleSpec
Source§fn clone(&self) -> BuiltInRuleSpec
fn clone(&self) -> BuiltInRuleSpec
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 BuiltInRuleSpec
impl Debug for BuiltInRuleSpec
Source§impl<'de> Deserialize<'de> for BuiltInRuleSpec
impl<'de> Deserialize<'de> for BuiltInRuleSpec
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 BuiltInRuleSpec
Source§impl PartialEq for BuiltInRuleSpec
impl PartialEq for BuiltInRuleSpec
Source§impl Serialize for BuiltInRuleSpec
impl Serialize for BuiltInRuleSpec
impl StructuralPartialEq for BuiltInRuleSpec
Auto Trait Implementations§
impl Freeze for BuiltInRuleSpec
impl RefUnwindSafe for BuiltInRuleSpec
impl Send for BuiltInRuleSpec
impl Sync for BuiltInRuleSpec
impl Unpin for BuiltInRuleSpec
impl UnsafeUnpin for BuiltInRuleSpec
impl UnwindSafe for BuiltInRuleSpec
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.