pub enum RecipeSource {
Project,
Global,
}Expand description
Origin of a recipe in a merged recipe list.
Variants§
Project
Recipe comes from the project-local justfile.
Global
Recipe comes from the global (~/.config/task-mcp) justfile.
Trait Implementations§
Source§impl Clone for RecipeSource
impl Clone for RecipeSource
Source§fn clone(&self) -> RecipeSource
fn clone(&self) -> RecipeSource
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 moreSource§impl Debug for RecipeSource
impl Debug for RecipeSource
Source§impl Default for RecipeSource
impl Default for RecipeSource
Source§fn default() -> RecipeSource
fn default() -> RecipeSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecipeSource
impl<'de> Deserialize<'de> for RecipeSource
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
Source§impl PartialEq for RecipeSource
impl PartialEq for RecipeSource
Source§impl Serialize for RecipeSource
impl Serialize for RecipeSource
impl Copy for RecipeSource
impl Eq for RecipeSource
impl StructuralPartialEq for RecipeSource
Auto Trait Implementations§
impl Freeze for RecipeSource
impl RefUnwindSafe for RecipeSource
impl Send for RecipeSource
impl Sync for RecipeSource
impl Unpin for RecipeSource
impl UnsafeUnpin for RecipeSource
impl UnwindSafe for RecipeSource
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