pub enum GenerateBlock {
    GenerateItem(Box<GenerateItem>),
    Multiple(Box<GenerateBlockMultiple>),
}Variants§
GenerateItem(Box<GenerateItem>)
Multiple(Box<GenerateBlockMultiple>)
Trait Implementations§
Source§impl Clone for GenerateBlock
 
impl Clone for GenerateBlock
Source§fn clone(&self) -> GenerateBlock
 
fn clone(&self) -> GenerateBlock
Returns a duplicate 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 GenerateBlock
 
impl Debug for GenerateBlock
Source§impl<'a> From<&'a GenerateBlock> for RefNode<'a>
 
impl<'a> From<&'a GenerateBlock> for RefNode<'a>
Source§fn from(x: &'a GenerateBlock) -> RefNode<'a>
 
fn from(x: &'a GenerateBlock) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a GenerateBlock> for RefNodes<'a>
 
impl<'a> From<&'a GenerateBlock> for RefNodes<'a>
Source§fn from(x: &'a GenerateBlock) -> RefNodes<'a>
 
fn from(x: &'a GenerateBlock) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<GenerateBlock> for AnyNode
 
impl From<GenerateBlock> for AnyNode
Source§fn from(x: GenerateBlock) -> AnyNode
 
fn from(x: GenerateBlock) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a GenerateBlock
 
impl<'a> IntoIterator for &'a GenerateBlock
Source§impl PartialEq for GenerateBlock
 
impl PartialEq for GenerateBlock
Source§impl<'a> TryFrom<&'a GenerateBlock> for Locate
 
impl<'a> TryFrom<&'a GenerateBlock> for Locate
Source§impl TryFrom<AnyNode> for GenerateBlock
 
impl TryFrom<AnyNode> for GenerateBlock
Source§impl TryFrom<GenerateBlock> for Locate
 
impl TryFrom<GenerateBlock> for Locate
impl StructuralPartialEq for GenerateBlock
Auto Trait Implementations§
impl Freeze for GenerateBlock
impl RefUnwindSafe for GenerateBlock
impl Send for GenerateBlock
impl Sync for GenerateBlock
impl Unpin for GenerateBlock
impl UnwindSafe for GenerateBlock
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