Skip to main content

ResolverFile

Struct ResolverFile 

Source
pub struct ResolverFile<'db>(/* private fields */);
Expand description

A file interpreted within a particular module-resolution environment.

The same file can resolve imports differently depending on the Python version and search paths used to interpret it.

For example, consider a file containing:

from zipfile._path import Path

Typeshed makes zipfile._path available only on Python 3.12 and newer:

resolve_module(ResolverFile(shared.py, Python 3.11), "zipfile._path")
    -> unresolved

resolve_module(ResolverFile(shared.py, Python 3.12), "zipfile._path")
    -> zipfile/_path/__init__.pyi

Search paths can also change which file an import resolves to, even when the Python version is identical:

resolve_module(ResolverFile(shared.py, project environment), "dependency")
    -> .venv/lib/dependency.py

resolve_module(ResolverFile(shared.py, script environment), "dependency")
    -> .script-venv/lib/dependency.py

Including the resolver environment in the file’s identity keeps these resolution results separate. Projects and scripts with equivalent resolver environments can still share resolution results.

Implementations§

Source§

impl ResolverFile<'static>

Source

pub fn ingredient(zalsa: &Zalsa) -> &IngredientImpl<Self>

Source§

impl<'db> ResolverFile<'db>

Source

pub fn new<Db_, T0: Lookup<File> + Hash, T1: Lookup<ResolverEnvironment<'db>> + Hash>( db: &'db Db_, file: T0, environment: T1, ) -> Self

Source

pub fn file<Db_>(self, db: &'db Db_) -> File
where Db_: ?Sized + Database,

Source

pub fn environment<Db_>(self, db: &'db Db_) -> ResolverEnvironment<'db>
where Db_: ?Sized + Database,

Source§

impl ResolverFile<'_>

Source

pub fn default_debug_fmt(this: Self, f: &mut Formatter<'_>) -> Result
where for<'db> File: Debug, for<'db> ResolverEnvironment<'db>: Debug,

Default debug formatting for this struct (may be useful if you define your own Debug impl)

Trait Implementations§

Source§

impl<'db> AsId for ResolverFile<'db>

Source§

fn as_id(&self) -> Id

Source§

impl<'db> Clone for ResolverFile<'db>

Source§

fn clone(&self) -> ResolverFile<'db>

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 Configuration for ResolverFile<'static>

Source§

const LOCATION: Location

Source§

const DEBUG_NAME: &'static str = "ResolverFile"

Source§

const PERSIST: bool = false

Whether this struct should be persisted with the database.
Source§

type Fields<'a> = (File, ResolverEnvironment<'a>)

The fields of the struct being interned.
Source§

type Struct<'db> = ResolverFile<'db>

The end user struct
Source§

fn heap_size(value: &Self::Fields<'_>) -> Option<usize>

Returns the size of any heap allocations in the output value, in bytes.
Source§

fn serialize<S: Serializer>( fields: &Self::Fields<'_>, serializer: S, ) -> Result<S::Ok, S::Error>

Serialize the fields using serde. Read more
Source§

fn deserialize<'de, D: Deserializer<'de>>( deserializer: D, ) -> Result<Self::Fields<'static>, D::Error>

Deserialize the fields using serde. Read more
Source§

const REVISIONS: NonZero<usize> = _

Source§

impl<'db> Copy for ResolverFile<'db>

Source§

impl<'db> Debug for ResolverFile<'db>

Source§

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

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

impl<'db> Eq for ResolverFile<'db>

Source§

impl<'db> FromId for ResolverFile<'db>

Source§

fn from_id(id: Id) -> Self

Source§

impl GetSize for ResolverFile<'_>

Source§

fn get_stack_size() -> usize

Determines how may bytes this object occupies inside the stack. Read more
Source§

fn get_heap_size(&self) -> usize

Determines how many bytes this object occupies inside the heap. Read more
Source§

fn get_heap_size_with_tracker<T>(&self, tracker: T) -> (usize, T)
where T: GetSizeTracker,

Determines how many bytes this object occupies inside the heap while using a tracker. Read more
Source§

fn get_size(&self) -> usize

Determines the total size of the object. Read more
Source§

fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)
where T: GetSizeTracker,

Determines the total size of the object while using a tracker. Read more
Source§

impl<'db> HasJar for ResolverFile<'db>

Source§

const KIND: JarKind = zalsa_::JarKind::Struct

The [JarKind] for Self::Jar.
Source§

type Jar = JarImpl<ResolverFile<'static>>

The [Jar] associated with this ingredient.
Source§

impl<'db> Hash for ResolverFile<'db>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'db> PartialEq for ResolverFile<'db>

Source§

fn eq(&self, other: &ResolverFile<'db>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'db> SalsaStructInDb for ResolverFile<'db>

Source§

const LEAF_TYPE_IDS: &'static [ConstTypeId]

The type IDs of all concrete (leaf) salsa struct types that this type can contain. Read more
Source§

type MemoIngredientMap = MemoIngredientSingletonIndex

Source§

fn lookup_ingredient_index(aux: &Zalsa) -> IngredientIndices

Lookup or create ingredient indices. Read more
Source§

fn entries(zalsa: &Zalsa) -> impl Iterator<Item = DatabaseKeyIndex> + '_

Returns the IDs of any instances of this struct in the database.
Source§

fn cast(id: Id, type_id: TypeId) -> Option<Self>

Plumbing to support nested salsa supertypes. Read more
Source§

unsafe fn memo_table( zalsa: &Zalsa, id: Id, current_revision: Revision, ) -> MemoTableWithTypes<'_>

Return the memo table associated with id. Read more
Source§

impl<'db> SalsaValue for ResolverFile<'db>

Source§

impl<'db> Send for ResolverFile<'db>

Source§

impl<'db> StructuralPartialEq for ResolverFile<'db>

Source§

impl<'db> Sync for ResolverFile<'db>

Auto Trait Implementations§

§

impl<'db> Freeze for ResolverFile<'db>

§

impl<'db> RefUnwindSafe for ResolverFile<'db>

§

impl<'db> Unpin for ResolverFile<'db>

§

impl<'db> UnsafeUnpin for ResolverFile<'db>

§

impl<'db> UnwindSafe for ResolverFile<'db>

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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> HashEqLike<&T> for T
where T: Hash + Eq,

Source§

fn hash<H>(&self, h: &mut H)
where H: Hasher,

Source§

fn eq(&self, data: &&T) -> bool

Source§

impl<T> HashEqLike<Cow<'_, T>> for T
where T: Hash + Eq + Clone,

Source§

fn hash<H>(&self, h: &mut H)
where H: Hasher,

Source§

fn eq(&self, data: &Cow<'_, T>) -> bool

Source§

impl<T> HashEqLike<T> for T
where T: Hash + Eq,

Source§

fn hash<H>(&self, h: &mut H)
where H: Hasher,

Source§

fn eq(&self, data: &T) -> bool

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Lookup<T> for T

Source§

fn into_owned(self) -> T

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more