Struct fv_template::rt::Context
source · pub struct Context<TFill, TMissing> { /* private fields */ }Expand description
A context used to render a template.
Implementations§
source§impl Context<fn(_: &mut Formatter<'_>, _: &str) -> Option<Result>, fn(_: &mut Formatter<'_>, _: &str) -> Result>
impl Context<fn(_: &mut Formatter<'_>, _: &str) -> Option<Result>, fn(_: &mut Formatter<'_>, _: &str) -> Result>
source§impl<TFill, TMissing> Context<TFill, TMissing>where
TFill: Fn(&mut Formatter<'_>, &str) -> Option<Result>,
TMissing: Fn(&mut Formatter<'_>, &str) -> Result,
impl<TFill, TMissing> Context<TFill, TMissing>where TFill: Fn(&mut Formatter<'_>, &str) -> Option<Result>, TMissing: Fn(&mut Formatter<'_>, &str) -> Result,
Trait Implementations§
Auto Trait Implementations§
impl<TFill, TMissing> RefUnwindSafe for Context<TFill, TMissing>where TFill: RefUnwindSafe, TMissing: RefUnwindSafe,
impl<TFill, TMissing> Send for Context<TFill, TMissing>where TFill: Send, TMissing: Send,
impl<TFill, TMissing> Sync for Context<TFill, TMissing>where TFill: Sync, TMissing: Sync,
impl<TFill, TMissing> Unpin for Context<TFill, TMissing>where TFill: Unpin, TMissing: Unpin,
impl<TFill, TMissing> UnwindSafe for Context<TFill, TMissing>where TFill: UnwindSafe, TMissing: UnwindSafe,
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