pub struct StagedArtifact<'bytes> {
pub platform: ConstraintPlatform,
pub artifact_name: String,
pub files: Vec<StagedFile<'bytes>>,
}Expand description
One staged platform artifact: the closed platform row, the published
artifact name, and its complete runtime closure. Exactly one file must
carry the executable role.
Fields§
§platform: ConstraintPlatform§artifact_name: String§files: Vec<StagedFile<'bytes>>Auto Trait Implementations§
impl<'bytes> Freeze for StagedArtifact<'bytes>
impl<'bytes> RefUnwindSafe for StagedArtifact<'bytes>
impl<'bytes> Send for StagedArtifact<'bytes>
impl<'bytes> Sync for StagedArtifact<'bytes>
impl<'bytes> Unpin for StagedArtifact<'bytes>
impl<'bytes> UnsafeUnpin for StagedArtifact<'bytes>
impl<'bytes> UnwindSafe for StagedArtifact<'bytes>
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