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