pub enum AstCodeChunk {
None,
Content(String),
Variable(String),
For(AstCodeFor),
}Variants§
Trait Implementations§
Source§impl Clone for AstCodeChunk
impl Clone for AstCodeChunk
Source§fn clone(&self) -> AstCodeChunk
fn clone(&self) -> AstCodeChunk
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 AstCodeChunk
impl Debug for AstCodeChunk
Auto Trait Implementations§
impl Freeze for AstCodeChunk
impl RefUnwindSafe for AstCodeChunk
impl Send for AstCodeChunk
impl Sync for AstCodeChunk
impl Unpin for AstCodeChunk
impl UnsafeUnpin for AstCodeChunk
impl UnwindSafe for AstCodeChunk
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