pub struct DiscoveryResult {
pub templates: Vec<Template>,
pub search_paths: Vec<PathBuf>,
}Expand description
Result of template discovery
Fields§
§templates: Vec<Template>Discovered templates
search_paths: Vec<PathBuf>Paths that were searched
Trait Implementations§
Source§impl Clone for DiscoveryResult
impl Clone for DiscoveryResult
Source§fn clone(&self) -> DiscoveryResult
fn clone(&self) -> DiscoveryResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DiscoveryResult
impl RefUnwindSafe for DiscoveryResult
impl Send for DiscoveryResult
impl Sync for DiscoveryResult
impl Unpin for DiscoveryResult
impl UnwindSafe for DiscoveryResult
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