pub struct ObservationStatus {Show 13 fields
pub disposition: ObservationDisposition,
pub namespace_queried: String,
pub resolved_workspace_path: String,
pub supported_file_count: usize,
pub imported_file_count: usize,
pub imported_chunk_count: usize,
pub imported_symbol_count: usize,
pub bootstrap_richness: BootstrapRichness,
pub available_forge_bundle_count: usize,
pub import_record_disposition: ImportRecordDisposition,
pub import_records_found: bool,
pub exact_next_step: String,
pub other_import_namespaces: Vec<String>,
}Expand description
Machine-readable status summary for a namespace observation.
Includes import disposition, file counts, and a human-readable
exact_next_step describing what the operator should do next.
Fields§
§disposition: ObservationDisposition§namespace_queried: String§resolved_workspace_path: String§supported_file_count: usize§imported_file_count: usize§imported_chunk_count: usize§imported_symbol_count: usize§bootstrap_richness: BootstrapRichness§available_forge_bundle_count: usize§import_record_disposition: ImportRecordDisposition§import_records_found: bool§exact_next_step: String§other_import_namespaces: Vec<String>Trait Implementations§
Source§impl Clone for ObservationStatus
impl Clone for ObservationStatus
Source§fn clone(&self) -> ObservationStatus
fn clone(&self) -> ObservationStatus
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 ObservationStatus
impl Debug for ObservationStatus
Source§impl<'de> Deserialize<'de> for ObservationStatus
impl<'de> Deserialize<'de> for ObservationStatus
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 ObservationStatus
Source§impl JsonSchema for ObservationStatus
impl JsonSchema for ObservationStatus
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ObservationStatus
impl PartialEq for ObservationStatus
Source§fn eq(&self, other: &ObservationStatus) -> bool
fn eq(&self, other: &ObservationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ObservationStatus
impl Serialize for ObservationStatus
impl StructuralPartialEq for ObservationStatus
Auto Trait Implementations§
impl Freeze for ObservationStatus
impl RefUnwindSafe for ObservationStatus
impl Send for ObservationStatus
impl Sync for ObservationStatus
impl Unpin for ObservationStatus
impl UnsafeUnpin for ObservationStatus
impl UnwindSafe for ObservationStatus
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<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§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.