pub struct Recipes {
pub dirs: Vec<PathBuf>,
}Expand description
Recipe-related configuration.
Fields§
§dirs: Vec<PathBuf>Additional global recipe directories (highest priority source).
Entries are absolute paths. Tilde is expanded on load and must be
absent from config.toml on disk.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Recipes
impl<'de> Deserialize<'de> for Recipes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Recipes
impl RefUnwindSafe for Recipes
impl Send for Recipes
impl Sync for Recipes
impl Unpin for Recipes
impl UnsafeUnpin for Recipes
impl UnwindSafe for Recipes
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