pub struct Weaver {
pub config: Arc<WeaverConfig>,
pub tags: Vec<String>,
pub routes: Vec<String>,
pub templates: Vec<Arc<Mutex<Template>>>,
pub documents: Vec<Arc<Mutex<Document>>>,
/* private fields */
}Fields§
§config: Arc<WeaverConfig>§routes: Vec<String>§templates: Vec<Arc<Mutex<Template>>>§documents: Vec<Arc<Mutex<Document>>>Implementations§
Source§impl Weaver
impl Weaver
pub fn new(base_path: PathBuf) -> Self
pub fn scan_content(&mut self) -> &mut Self
pub fn scan_templates(&mut self) -> &mut Self
pub async fn build(&self) -> Result<(), BuildError>
Auto Trait Implementations§
impl Freeze for Weaver
impl !RefUnwindSafe for Weaver
impl Send for Weaver
impl Sync for Weaver
impl Unpin for Weaver
impl !UnwindSafe for Weaver
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
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