pub struct BundleManifest {
pub schema_version: &'static str,
pub manifest_version: u32,
pub command: &'static str,
pub output_dir: String,
pub partial_failure: bool,
pub summary: BundleSummary,
pub artifacts: Vec<BundleArtifact>,
}Fields§
§schema_version: &'static str§manifest_version: u32§command: &'static str§output_dir: String§partial_failure: bool§summary: BundleSummary§artifacts: Vec<BundleArtifact>Implementations§
Source§impl BundleManifest
impl BundleManifest
pub fn from_artifacts( output_dir: String, artifacts: Vec<BundleArtifact>, ) -> Self
Trait Implementations§
Source§impl Clone for BundleManifest
impl Clone for BundleManifest
Source§fn clone(&self) -> BundleManifest
fn clone(&self) -> BundleManifest
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 BundleManifest
impl Debug for BundleManifest
Source§impl PartialEq for BundleManifest
impl PartialEq for BundleManifest
Source§impl Serialize for BundleManifest
impl Serialize for BundleManifest
impl Eq for BundleManifest
impl StructuralPartialEq for BundleManifest
Auto Trait Implementations§
impl Freeze for BundleManifest
impl RefUnwindSafe for BundleManifest
impl Send for BundleManifest
impl Sync for BundleManifest
impl Unpin for BundleManifest
impl UnsafeUnpin for BundleManifest
impl UnwindSafe for BundleManifest
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