pub struct WatchExec {
pub command: Vec<String>,
}Expand description
Exec command run as part of a sync+exec watch action.
Fields§
§command: Vec<String>Command and arguments executed in the container (argv form, not shell-parsed).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WatchExec
impl<'de> Deserialize<'de> for WatchExec
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 WatchExec
impl RefUnwindSafe for WatchExec
impl Send for WatchExec
impl Sync for WatchExec
impl Unpin for WatchExec
impl UnsafeUnpin for WatchExec
impl UnwindSafe for WatchExec
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