pub enum DisableStatement {
Task(Box<DisableStatementTask>),
Block(Box<DisableStatementBlock>),
Fork(Box<DisableStatementFork>),
}
Variants§
Trait Implementations§
Source§impl Clone for DisableStatement
impl Clone for DisableStatement
Source§fn clone(&self) -> DisableStatement
fn clone(&self) -> DisableStatement
Returns a copy of the value. Read more
1.0.0 · 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 DisableStatement
impl Debug for DisableStatement
Source§impl<'a> From<&'a DisableStatement> for RefNode<'a>
impl<'a> From<&'a DisableStatement> for RefNode<'a>
Source§fn from(x: &'a DisableStatement) -> RefNode<'a>
fn from(x: &'a DisableStatement) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a DisableStatement> for RefNodes<'a>
impl<'a> From<&'a DisableStatement> for RefNodes<'a>
Source§fn from(x: &'a DisableStatement) -> RefNodes<'a>
fn from(x: &'a DisableStatement) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<DisableStatement> for AnyNode
impl From<DisableStatement> for AnyNode
Source§fn from(x: DisableStatement) -> AnyNode
fn from(x: DisableStatement) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a DisableStatement
impl<'a> IntoIterator for &'a DisableStatement
Source§impl PartialEq for DisableStatement
impl PartialEq for DisableStatement
Source§impl<'a> TryFrom<&'a DisableStatement> for Locate
impl<'a> TryFrom<&'a DisableStatement> for Locate
Source§impl TryFrom<AnyNode> for DisableStatement
impl TryFrom<AnyNode> for DisableStatement
Source§impl TryFrom<DisableStatement> for Locate
impl TryFrom<DisableStatement> for Locate
impl StructuralPartialEq for DisableStatement
Auto Trait Implementations§
impl Freeze for DisableStatement
impl RefUnwindSafe for DisableStatement
impl Send for DisableStatement
impl Sync for DisableStatement
impl Unpin for DisableStatement
impl UnwindSafe for DisableStatement
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