pub struct ConfigReport {
pub schema_version: u8,
pub workspace: String,
pub extraction_budgets: ExtractionBudgets,
pub execution_policy: ExecutionPolicy,
pub execution_policy_fingerprint: String,
pub repositories: Vec<RepositoryConfigReport>,
}Expand description
Versioned read-only result returned by csgraph config show.
Fields§
§schema_version: u8Output schema version.
workspace: StringWorkspace name from the manifest.
extraction_budgets: ExtractionBudgetsEffective global extraction safety limits, including applied defaults.
execution_policy: ExecutionPolicyEffective global supervised-execution policy, including applied defaults.
execution_policy_fingerprint: StringCanonical fingerprint of the effective supervised-execution policy.
repositories: Vec<RepositoryConfigReport>Effective per-repository configuration in alias order.
Trait Implementations§
Source§impl Clone for ConfigReport
impl Clone for ConfigReport
Source§fn clone(&self) -> ConfigReport
fn clone(&self) -> ConfigReport
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 ConfigReport
impl Debug for ConfigReport
Source§impl<'de> Deserialize<'de> for ConfigReport
impl<'de> Deserialize<'de> for ConfigReport
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 ConfigReport
Source§impl JsonSchema for ConfigReport
impl JsonSchema for ConfigReport
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ConfigReport
impl PartialEq for ConfigReport
Source§impl Serialize for ConfigReport
impl Serialize for ConfigReport
impl StructuralPartialEq for ConfigReport
Auto Trait Implementations§
impl Freeze for ConfigReport
impl RefUnwindSafe for ConfigReport
impl Send for ConfigReport
impl Sync for ConfigReport
impl Unpin for ConfigReport
impl UnsafeUnpin for ConfigReport
impl UnwindSafe for ConfigReport
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.