pub struct Operation {
pub name: String,
pub input: StateRef,
pub output: StateRef,
pub setups: Vec<SetupRef>,
pub emit: Box<dyn EmitBuild>,
}Expand description
An Operation transforms files from one State to another.
Fields§
§name: String§input: StateRef§output: StateRef§setups: Vec<SetupRef>§emit: Box<dyn EmitBuild>Auto Trait Implementations§
impl !RefUnwindSafe for Operation
impl !Send for Operation
impl !Sync for Operation
impl Unpin for Operation
impl !UnwindSafe for Operation
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