Struct liquid_compiler::BoxedBlockParser
source · pub struct BoxedBlockParser { /* private fields */ }Trait Implementations
sourceimpl Clone for BoxedBlockParser
impl Clone for BoxedBlockParser
sourcefn clone(&self) -> BoxedBlockParser
fn clone(&self) -> BoxedBlockParser
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 moresourceimpl From<Box<dyn ParseBlock + 'static, Global>> for BoxedBlockParser
impl From<Box<dyn ParseBlock + 'static, Global>> for BoxedBlockParser
sourcefn from(parser: Box<dyn ParseBlock>) -> BoxedBlockParser
fn from(parser: Box<dyn ParseBlock>) -> BoxedBlockParser
Converts to this type from the input type.
sourceimpl From<fn(_: &str, _: &[Token], _: &[Element], _: &LiquidOptions) -> Result<Box<dyn Renderable + 'static, Global>, Error>> for BoxedBlockParser
impl From<fn(_: &str, _: &[Token], _: &[Element], _: &LiquidOptions) -> Result<Box<dyn Renderable + 'static, Global>, Error>> for BoxedBlockParser
sourcefn from(parser: FnParseBlock) -> BoxedBlockParser
fn from(parser: FnParseBlock) -> BoxedBlockParser
Converts to this type from the input type.
sourceimpl ParseBlock for BoxedBlockParser
impl ParseBlock for BoxedBlockParser
fn parse(
&self,
tag_name: &str,
arguments: &[Token],
tokens: &[Element],
options: &LiquidOptions
) -> Result<Box<dyn Renderable>>
Auto Trait Implementations
impl !RefUnwindSafe for BoxedBlockParser
impl Send for BoxedBlockParser
impl Sync for BoxedBlockParser
impl Unpin for BoxedBlockParser
impl !UnwindSafe for BoxedBlockParser
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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