pub struct RenderCtx<'a> {
pub workspace: WorkspaceIndex,
pub root: &'a Path,
pub dir: &'a Path,
pub rel_dir: &'a str,
pub metadata: &'a Metadata,
pub output_stem: &'a str,
}Expand description
Context passed to template rendering.
Fields§
§workspace: WorkspaceIndex§root: &'a Path§dir: &'a Path§rel_dir: &'a str§metadata: &'a Metadata§output_stem: &'a strImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RenderCtx<'a>
impl<'a> !RefUnwindSafe for RenderCtx<'a>
impl<'a> Send for RenderCtx<'a>
impl<'a> Sync for RenderCtx<'a>
impl<'a> Unpin for RenderCtx<'a>
impl<'a> UnsafeUnpin for RenderCtx<'a>
impl<'a> !UnwindSafe for RenderCtx<'a>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more