pub enum ConfigRuleStatement {
Default(Box<ConfigRuleStatementDefault>),
InstLib(Box<ConfigRuleStatementInstLib>),
InstUse(Box<ConfigRuleStatementInstUse>),
CellLib(Box<ConfigRuleStatementCellLib>),
CellUse(Box<ConfigRuleStatementCellUse>),
}Variants
Default(Box<ConfigRuleStatementDefault>)
InstLib(Box<ConfigRuleStatementInstLib>)
InstUse(Box<ConfigRuleStatementInstUse>)
CellLib(Box<ConfigRuleStatementCellLib>)
CellUse(Box<ConfigRuleStatementCellUse>)
Trait Implementations
sourceimpl Clone for ConfigRuleStatement
impl Clone for ConfigRuleStatement
sourcefn clone(&self) -> ConfigRuleStatement
fn clone(&self) -> ConfigRuleStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ConfigRuleStatement
impl Debug for ConfigRuleStatement
sourceimpl<'a> From<&'a ConfigRuleStatement> for RefNodes<'a>
impl<'a> From<&'a ConfigRuleStatement> for RefNodes<'a>
sourcefn from(x: &'a ConfigRuleStatement) -> Self
fn from(x: &'a ConfigRuleStatement) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ConfigRuleStatement> for RefNode<'a>
impl<'a> From<&'a ConfigRuleStatement> for RefNode<'a>
sourcefn from(x: &'a ConfigRuleStatement) -> Self
fn from(x: &'a ConfigRuleStatement) -> Self
Converts to this type from the input type.
sourceimpl From<ConfigRuleStatement> for AnyNode
impl From<ConfigRuleStatement> for AnyNode
sourcefn from(x: ConfigRuleStatement) -> Self
fn from(x: ConfigRuleStatement) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ConfigRuleStatement
impl<'a> IntoIterator for &'a ConfigRuleStatement
sourceimpl PartialEq<ConfigRuleStatement> for ConfigRuleStatement
impl PartialEq<ConfigRuleStatement> for ConfigRuleStatement
sourcefn eq(&self, other: &ConfigRuleStatement) -> bool
fn eq(&self, other: &ConfigRuleStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ConfigRuleStatement) -> bool
fn ne(&self, other: &ConfigRuleStatement) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ConfigRuleStatement> for Locate
impl<'a> TryFrom<&'a ConfigRuleStatement> for Locate
sourceimpl TryFrom<AnyNode> for ConfigRuleStatement
impl TryFrom<AnyNode> for ConfigRuleStatement
sourceimpl TryFrom<ConfigRuleStatement> for Locate
impl TryFrom<ConfigRuleStatement> for Locate
impl StructuralPartialEq for ConfigRuleStatement
Auto Trait Implementations
impl RefUnwindSafe for ConfigRuleStatement
impl Send for ConfigRuleStatement
impl Sync for ConfigRuleStatement
impl Unpin for ConfigRuleStatement
impl UnwindSafe for ConfigRuleStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more