pub struct Operation {
pub id: String,
pub name: String,
pub priority: u32,
pub dependencies: Vec<String>,
}Expand description
An operation to be sequenced
Fields§
§id: StringOperation identifier
name: StringOperation name
priority: u32Priority (lower = earlier)
dependencies: Vec<String>Dependencies
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Operation
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