pub struct ParserPackCandidateIdentity {
pub projectatlas_revision: SourceRevision,
pub cargo_package_version: String,
pub intended_release_version: String,
pub cargo_lock_sha256: Sha256Digest,
pub rustc_release: String,
pub rustc_commit_hash: String,
pub source_state: ParserPackCandidateSourceState,
}Expand description
Exact source and toolchain identity used to build a parser-pack worker.
Fields§
§projectatlas_revision: SourceRevisionExact ProjectAtlas source revision.
cargo_package_version: StringCargo package version compiled into the worker.
intended_release_version: StringIntended ProjectAtlas release line for the capability manifest.
cargo_lock_sha256: Sha256DigestSHA-256 of the exact workspace lockfile.
rustc_release: StringRust compiler release version without host-specific prose.
rustc_commit_hash: StringRust compiler commit hash.
source_state: ParserPackCandidateSourceStateWhether tracked candidate source was clean when constructed.
Trait Implementations§
Source§impl Clone for ParserPackCandidateIdentity
impl Clone for ParserPackCandidateIdentity
Source§fn clone(&self) -> ParserPackCandidateIdentity
fn clone(&self) -> ParserPackCandidateIdentity
Returns a duplicate of the value. Read more
1.0.0 · 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 ParserPackCandidateIdentity
impl Debug for ParserPackCandidateIdentity
Source§impl<'de> Deserialize<'de> for ParserPackCandidateIdentity
impl<'de> Deserialize<'de> for ParserPackCandidateIdentity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ParserPackCandidateIdentity
impl StructuralPartialEq for ParserPackCandidateIdentity
Auto Trait Implementations§
impl Freeze for ParserPackCandidateIdentity
impl RefUnwindSafe for ParserPackCandidateIdentity
impl Send for ParserPackCandidateIdentity
impl Sync for ParserPackCandidateIdentity
impl Unpin for ParserPackCandidateIdentity
impl UnwindSafe for ParserPackCandidateIdentity
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.