pub struct Run<Dir = PathBuf> {
pub id: Ulid,
pub name: String,
pub command: Vec<String>,
pub run_dir: Dir,
pub project_root: PathBuf,
}Fields§
§id: Ulid§name: String§command: Vec<String>§run_dir: Dir§project_root: PathBufImplementations§
Trait Implementations§
Source§impl<'de, Dir> Deserialize<'de> for Run<Dir>where
Dir: Deserialize<'de>,
impl<'de, Dir> Deserialize<'de> for Run<Dir>where
Dir: Deserialize<'de>,
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<Dir> Freeze for Run<Dir>where
Dir: Freeze,
impl<Dir> RefUnwindSafe for Run<Dir>where
Dir: RefUnwindSafe,
impl<Dir> Send for Run<Dir>where
Dir: Send,
impl<Dir> Sync for Run<Dir>where
Dir: Sync,
impl<Dir> Unpin for Run<Dir>where
Dir: Unpin,
impl<Dir> UnwindSafe for Run<Dir>where
Dir: UnwindSafe,
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