pub struct MissingAsset {
pub id: String,
pub digest: String,
pub reason: &'static str,
}Expand description
One asset a run needed and did not have.
Fields§
§id: StringThe asset id.
digest: StringThe digest that was pinned for it, or a note that none is.
reason: &'static strWhy it could not be used.
Trait Implementations§
Source§impl Clone for MissingAsset
impl Clone for MissingAsset
Source§fn clone(&self) -> MissingAsset
fn clone(&self) -> MissingAsset
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 MissingAsset
impl Debug for MissingAsset
Source§impl Display for MissingAsset
impl Display for MissingAsset
impl Eq for MissingAsset
Source§impl PartialEq for MissingAsset
impl PartialEq for MissingAsset
Source§impl Serialize for MissingAsset
impl Serialize for MissingAsset
impl StructuralPartialEq for MissingAsset
Auto Trait Implementations§
impl Freeze for MissingAsset
impl RefUnwindSafe for MissingAsset
impl Send for MissingAsset
impl Sync for MissingAsset
impl Unpin for MissingAsset
impl UnsafeUnpin for MissingAsset
impl UnwindSafe for MissingAsset
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.