Skip to main content

TypeAwareProjectMeta

Struct TypeAwareProjectMeta 

Source
pub struct TypeAwareProjectMeta {
Show 19 fields pub config: String, pub source: TypeAwareProjectSource, pub status: TypeAwareProjectStatus, pub candidate_count: usize, pub confirmed_used_count: usize, pub contract_preserved_count: usize, pub no_static_references_count: usize, pub fix_eligible_count: usize, pub unresolved_count: usize, pub abstained_count: usize, pub blocking_diagnostic_count: usize, pub source_file_count: usize, pub program_reused: Option<bool>, pub program_shared_across_queries: Option<bool>, pub program_reused_from_previous_snapshot: Option<bool>, pub snapshot_revision: Option<u64>, pub invalidation_kind: Option<TypeAwareInvalidationKind>, pub reason_code: Option<SemanticGapReason>, pub abstain_reason: Option<TypeAwareAbstentionReason>,
}
Expand description

Bounded provenance for one TypeScript project handled by the sidecar.

Fields§

§config: String

Project config relative to the analysis root, or <inferred>.

§source: TypeAwareProjectSource

How the project was selected: auto or explicit.

§status: TypeAwareProjectStatus

Project result: refined, abstained, complete, or unavailable.

§candidate_count: usize

Candidates assigned to this project.

§confirmed_used_count: usize

Candidates confirmed as used and removed.

§contract_preserved_count: usize

Candidates retained because they implement or override a contract.

§no_static_references_count: usize

Candidates with complete no-static-reference evidence.

§fix_eligible_count: usize

Candidates eligible for a guarded class-member fix.

§unresolved_count: usize

Candidates whose exact semantic outcome remained unresolved.

§abstained_count: usize

Candidates retained without scanning because the project was unsafe.

§blocking_diagnostic_count: usize

Config, program, syntactic, and bind diagnostics that block scanning.

§source_file_count: usize

Source files loaded into this TypeScript program.

§program_reused: Option<bool>

Whether this Program served more than one semantic query in the batch.

§program_shared_across_queries: Option<bool>

Whether this Program served more than one query in the current batch.

§program_reused_from_previous_snapshot: Option<bool>

Whether the root-bound semantic session reused the prior snapshot.

§snapshot_revision: Option<u64>

Monotonic revision within the root-bound semantic session.

§invalidation_kind: Option<TypeAwareInvalidationKind>

Full, incremental, or no invalidation before this query.

§reason_code: Option<SemanticGapReason>

Stable project-level gap reason.

§abstain_reason: Option<TypeAwareAbstentionReason>

Stable reason code when status is abstained.

Trait Implementations§

Source§

impl Clone for TypeAwareProjectMeta

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TypeAwareProjectMeta

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for TypeAwareProjectMeta

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for TypeAwareProjectMeta

Source§

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 Serialize for TypeAwareProjectMeta

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<'a, T> FromIn<'a, T> for T

Source§

fn from_in(t: T, _: &'a Allocator) -> T

Converts to this type from the input type within the given allocator.
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<'a, T, U> IntoIn<'a, U> for T
where U: FromIn<'a, T>,

Source§

fn into_in(self, allocator: &'a Allocator) -> U

Converts this type into the (usually inferred) input type within the given allocator.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.