pub struct Pool<'a> {
pub name: Identifier<'a>,
pub depth: Value<'a>,
}
Expand description
Pool definition.
A pool definition is used to limit parallel execution of build commands.
Fields§
§name: Identifier<'a>
Pool name.
depth: Value<'a>
Pool depth.
Trait Implementations§
impl<'a> Eq for Pool<'a>
impl<'a> StructuralPartialEq for Pool<'a>
Auto Trait Implementations§
impl<'a> Freeze for Pool<'a>
impl<'a> RefUnwindSafe for Pool<'a>
impl<'a> Send for Pool<'a>
impl<'a> Sync for Pool<'a>
impl<'a> Unpin for Pool<'a>
impl<'a> UnwindSafe for Pool<'a>
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