pub struct PyProjectToml {
pub build_system: Option<BuildSystem>,
pub project: Option<Project>,
pub dependency_groups: Option<DependencyGroups>,
}Expand description
A pyproject.toml as specified in PEP 517
Fields§
§build_system: Option<BuildSystem>Build-related data
project: Option<Project>Project metadata
dependency_groups: Option<DependencyGroups>Dependency groups table
Implementations§
Source§impl PyProjectToml
impl PyProjectToml
Sourcepub fn resolve(&self) -> Result<ResolvedDependencies, ResolveError>
pub fn resolve(&self) -> Result<ResolvedDependencies, ResolveError>
Resolve the optional dependencies (extras) and dependency groups into flat lists of requirements.
This function will recursively resolve all optional dependency groups and dependency groups, including those that reference other groups. It will return an error if
- there is a cycle in the groups, or
- a group references another group that does not exist.
Resolving self-referential optional dependencies requires project.name to be set.
Note: This method makes no guarantee about the order of items and whether duplicates are removed or not.
Trait Implementations§
Source§impl Clone for PyProjectToml
impl Clone for PyProjectToml
Source§fn clone(&self) -> PyProjectToml
fn clone(&self) -> PyProjectToml
Returns a duplicate of the value. Read more
1.0.0 · 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 PyProjectToml
impl Debug for PyProjectToml
Source§impl<'de> Deserialize<'de> for PyProjectToml
impl<'de> Deserialize<'de> for PyProjectToml
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
Source§impl PartialEq for PyProjectToml
impl PartialEq for PyProjectToml
Source§impl Serialize for PyProjectToml
impl Serialize for PyProjectToml
impl Eq for PyProjectToml
impl StructuralPartialEq for PyProjectToml
Auto Trait Implementations§
impl Freeze for PyProjectToml
impl RefUnwindSafe for PyProjectToml
impl Send for PyProjectToml
impl Sync for PyProjectToml
impl Unpin for PyProjectToml
impl UnwindSafe for PyProjectToml
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,
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.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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