pub struct LockVerifyEntry {
pub lang: String,
pub expected: String,
pub actual: Option<String>,
pub status: LockVerifyStatus,
}Expand description
A single grammar’s verification result from verify_lock.
Fields§
§lang: StringLanguage name as recorded in the lock file.
expected: StringThe sha256 hash pinned in the lock file ("sha256:…").
actual: Option<String>The sha256 hash we recomputed from disk; None when the wasm is absent.
status: LockVerifyStatusMatch / Mismatch / Missing.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LockVerifyEntry
impl RefUnwindSafe for LockVerifyEntry
impl Send for LockVerifyEntry
impl Sync for LockVerifyEntry
impl Unpin for LockVerifyEntry
impl UnsafeUnpin for LockVerifyEntry
impl UnwindSafe for LockVerifyEntry
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more