pub struct PublicationBatch {
pub number: usize,
pub crates: Vec<String>,
pub can_parallelize: bool,
}Expand description
Batch entry for plan.
Fields§
§number: usizeBatch number.
crates: Vec<String>Included crates.
can_parallelize: boolWhether it can run in parallel.
Trait Implementations§
Source§impl Clone for PublicationBatch
impl Clone for PublicationBatch
Source§fn clone(&self) -> PublicationBatch
fn clone(&self) -> PublicationBatch
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 moreSource§impl Debug for PublicationBatch
impl Debug for PublicationBatch
Auto Trait Implementations§
impl Freeze for PublicationBatch
impl RefUnwindSafe for PublicationBatch
impl Send for PublicationBatch
impl Sync for PublicationBatch
impl Unpin for PublicationBatch
impl UnsafeUnpin for PublicationBatch
impl UnwindSafe for PublicationBatch
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