pub struct PackSummary {
pub name: String,
pub version: String,
pub commands: Vec<String>,
}Expand description
Result of packing: identity + derived command names (sorted).
Fields§
§name: String§version: String§commands: Vec<String>Trait Implementations§
Source§impl Clone for PackSummary
impl Clone for PackSummary
Source§fn clone(&self) -> PackSummary
fn clone(&self) -> PackSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PackSummary
impl RefUnwindSafe for PackSummary
impl Send for PackSummary
impl Sync for PackSummary
impl Unpin for PackSummary
impl UnsafeUnpin for PackSummary
impl UnwindSafe for PackSummary
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