pub struct Project {
pub name: String,
pub version: String,
pub requires_python: Option<String>,
pub scripts: Vec<String>,
pub optional_extras: Vec<String>,
pub dependency_groups: Vec<String>,
pub workspace_root: Utf8PathBuf,
}Fields§
§name: String§version: String§requires_python: Option<String>§scripts: Vec<String>§optional_extras: Vec<String>§dependency_groups: Vec<String>§workspace_root: Utf8PathBufTrait Implementations§
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
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