pub struct ParserPackOfflineConstruction {
pub cargo_frozen: ParserPackVerifiedControl,
pub cargo_offline: ParserPackVerifiedControl,
pub dependency_offline: ParserPackVerifiedControl,
pub zero_embedded_grammars: ParserPackVerifiedControl,
pub language_selector_absent: ParserPackVerifiedControl,
pub failed_grammar_override_absent: ParserPackVerifiedControl,
pub network_denial: ParserPackNetworkDenial,
}Expand description
Offline-construction controls recorded with an immutable platform artifact.
Fields§
§cargo_frozen: ParserPackVerifiedControlCargo ran in frozen mode against the exact lockfile.
cargo_offline: ParserPackVerifiedControlCargo ran in offline mode after the bounded acquisition stage.
dependency_offline: ParserPackVerifiedControlThe grammar dependency’s own offline mode was forced.
zero_embedded_grammars: ParserPackVerifiedControlThe ProjectAtlas worker embedded no grammar libraries.
language_selector_absent: ParserPackVerifiedControlThe dependency’s broad language-selection variable was absent.
failed_grammar_override_absent: ParserPackVerifiedControlThe dependency’s failed-grammar override was absent.
network_denial: ParserPackNetworkDenialPhysical egress denial and canary outcome.
Trait Implementations§
Source§impl Clone for ParserPackOfflineConstruction
impl Clone for ParserPackOfflineConstruction
Source§fn clone(&self) -> ParserPackOfflineConstruction
fn clone(&self) -> ParserPackOfflineConstruction
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<'de> Deserialize<'de> for ParserPackOfflineConstruction
impl<'de> Deserialize<'de> for ParserPackOfflineConstruction
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
Source§impl PartialEq for ParserPackOfflineConstruction
impl PartialEq for ParserPackOfflineConstruction
Source§fn eq(&self, other: &ParserPackOfflineConstruction) -> bool
fn eq(&self, other: &ParserPackOfflineConstruction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParserPackOfflineConstruction
impl StructuralPartialEq for ParserPackOfflineConstruction
Auto Trait Implementations§
impl Freeze for ParserPackOfflineConstruction
impl RefUnwindSafe for ParserPackOfflineConstruction
impl Send for ParserPackOfflineConstruction
impl Sync for ParserPackOfflineConstruction
impl Unpin for ParserPackOfflineConstruction
impl UnwindSafe for ParserPackOfflineConstruction
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.