pub struct PinnedRuntimeFiles {
pub target: &'static str,
pub archive_sha256: &'static str,
pub files: &'static [PinnedFile],
}Expand description
One platform’s extracted runtime files.
Fields§
§target: &'static strThe platform, as the upstream release names it.
archive_sha256: &'static strThe archive these were derived from, so a bumped archive pin that nobody re-derived is a test failure rather than a silent mismatch.
files: &'static [PinnedFile]Every file the archive contributes, sorted by name.
Trait Implementations§
Source§impl Clone for PinnedRuntimeFiles
impl Clone for PinnedRuntimeFiles
Source§fn clone(&self) -> PinnedRuntimeFiles
fn clone(&self) -> PinnedRuntimeFiles
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 moreimpl Copy for PinnedRuntimeFiles
Source§impl Debug for PinnedRuntimeFiles
impl Debug for PinnedRuntimeFiles
impl Eq for PinnedRuntimeFiles
Source§impl PartialEq for PinnedRuntimeFiles
impl PartialEq for PinnedRuntimeFiles
impl StructuralPartialEq for PinnedRuntimeFiles
Auto Trait Implementations§
impl Freeze for PinnedRuntimeFiles
impl RefUnwindSafe for PinnedRuntimeFiles
impl Send for PinnedRuntimeFiles
impl Sync for PinnedRuntimeFiles
impl Unpin for PinnedRuntimeFiles
impl UnsafeUnpin for PinnedRuntimeFiles
impl UnwindSafe for PinnedRuntimeFiles
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.