pub struct ExecutionLevel {
pub projects: Vec<String>,
pub level: usize,
}Expand description
Represents a level in the execution hierarchy
Fields§
§projects: Vec<String>Projects that can be executed at this level
level: usizeLevel number (0 is first)
Trait Implementations§
Source§impl Clone for ExecutionLevel
impl Clone for ExecutionLevel
Source§fn clone(&self) -> ExecutionLevel
fn clone(&self) -> ExecutionLevel
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 moreAuto Trait Implementations§
impl Freeze for ExecutionLevel
impl RefUnwindSafe for ExecutionLevel
impl Send for ExecutionLevel
impl Sync for ExecutionLevel
impl Unpin for ExecutionLevel
impl UnwindSafe for ExecutionLevel
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