pub struct ArchiveAssetName {
pub format: String,
pub asset_name: String,
}Expand description
One released archive asset: the configured archive format string and the
byte-exact filename the archive stage uploads for a single build target.
Fields§
§format: StringThe archive format string (tar.gz, zip, …) — its file extension.
asset_name: StringThe full asset filename (name_template stem + format extension),
byte-identical to what the archive stage writes.
Trait Implementations§
Source§impl Clone for ArchiveAssetName
impl Clone for ArchiveAssetName
Source§fn clone(&self) -> ArchiveAssetName
fn clone(&self) -> ArchiveAssetName
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 moreSource§impl Debug for ArchiveAssetName
impl Debug for ArchiveAssetName
impl Eq for ArchiveAssetName
Source§impl PartialEq for ArchiveAssetName
impl PartialEq for ArchiveAssetName
impl StructuralPartialEq for ArchiveAssetName
Auto Trait Implementations§
impl Freeze for ArchiveAssetName
impl RefUnwindSafe for ArchiveAssetName
impl Send for ArchiveAssetName
impl Sync for ArchiveAssetName
impl Unpin for ArchiveAssetName
impl UnsafeUnpin for ArchiveAssetName
impl UnwindSafe for ArchiveAssetName
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.