pub struct ChangeValidityInput {
pub repo_id: RepoId,
pub checkout_id: CheckoutId,
pub worktree: NativePath,
pub git_common_dir: NativePath,
pub checkout_head_sha: String,
pub staged_hash: String,
pub worktree_hash: String,
pub exact_diff_fingerprint: String,
pub workspace_manifest_hash: String,
pub contract_registry_hash: String,
pub analyzer_versions: AnalyzerVersions,
}Expand description
Current fingerprints used to determine whether analysis remains valid.
Fields§
§repo_id: RepoIdCurrent repository identity.
checkout_id: CheckoutIdCurrent checkout identity.
worktree: NativePathCurrent canonical worktree.
git_common_dir: NativePathCurrent canonical common Git directory.
checkout_head_sha: StringCurrent checked-out commit.
staged_hash: StringCurrent staged output hash.
worktree_hash: StringCurrent worktree output hash.
exact_diff_fingerprint: StringCurrent exact diff fingerprint.
workspace_manifest_hash: StringCurrent workspace manifest hash.
contract_registry_hash: StringCurrent contract registry hash.
analyzer_versions: AnalyzerVersionsCurrent analyzer versions.
Trait Implementations§
Source§impl Clone for ChangeValidityInput
impl Clone for ChangeValidityInput
Source§fn clone(&self) -> ChangeValidityInput
fn clone(&self) -> ChangeValidityInput
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 ChangeValidityInput
impl Debug for ChangeValidityInput
Source§impl<'de> Deserialize<'de> for ChangeValidityInput
impl<'de> Deserialize<'de> for ChangeValidityInput
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 ChangeValidityInput
Source§impl From<&ChangeSet> for ChangeValidityInput
impl From<&ChangeSet> for ChangeValidityInput
Source§impl JsonSchema for ChangeValidityInput
impl JsonSchema for ChangeValidityInput
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 ChangeValidityInput
impl PartialEq for ChangeValidityInput
Source§impl Serialize for ChangeValidityInput
impl Serialize for ChangeValidityInput
impl StructuralPartialEq for ChangeValidityInput
Auto Trait Implementations§
impl Freeze for ChangeValidityInput
impl RefUnwindSafe for ChangeValidityInput
impl Send for ChangeValidityInput
impl Sync for ChangeValidityInput
impl Unpin for ChangeValidityInput
impl UnsafeUnpin for ChangeValidityInput
impl UnwindSafe for ChangeValidityInput
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.