pub struct Builder { /* private fields */ }
Implementations§
Source§impl Builder
impl Builder
pub fn new(_configuration: BuilderConfiguration) -> Self
pub fn new_with_defaults() -> Self
Source§impl Builder
impl Builder
pub fn route_askama( &mut self, _source_0: &str, _context: Option<(&str, Option<&str>)>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_askamas( &mut self, _sources_0: &str, _glob: Option<&str>, _context: Option<(&str, Option<&str>)>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn watch_askama(&mut self, _source: &str) -> BuilderResult
pub fn watch_askamas( &mut self, _sources: &str, _glob: Option<&str>, ) -> BuilderResult
pub fn route_markdown_askama( &mut self, _source_markdown_0: &str, _source_template_0: &str, _context: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_markdowns_askama( &mut self, _sources_markdown_0: &str, _glob: Option<&str>, _source_template_0: &str, _context: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_markdown( &mut self, _source_0: &str, _header_source: Option<&str>, _footer_source: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_markdowns( &mut self, _sources_0: &str, _glob: Option<&str>, _header_source: Option<&str>, _footer_source: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_css( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_sass( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_js( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_image( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_images( &mut self, _sources_0: &str, _glob: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_icon( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_icons( &mut self, _sources_0: &str, _glob: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_favicon( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_favicons( &mut self, _sources_0: &str, _glob: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_font( &mut self, _source_0: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_fonts( &mut self, _sources_0: &str, _glob: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_asset( &mut self, _source_0: &str, _content_type: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_assets( &mut self, _sources_0: &str, _glob: Option<&str>, _content_type: Option<&str>, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn route_sitemap( &mut self, _prefix: &str, _format: &str, _route_builder: &(impl RoutePathBuilder + ?Sized), _extensions_builder: &(impl RouteExtensionsBuilder + ?Sized), ) -> BuilderResult
pub fn watch_asset(&mut self, _source: &str) -> BuilderResult
pub fn watch_assets( &mut self, _sources: &str, _glob: Option<&str>, ) -> BuilderResult
pub fn generate(self) -> BuilderResult
Auto Trait Implementations§
impl Freeze for Builder
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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