pub struct ProjectFiles {
    pub name: SmolStr,
    pub version: SmolStr,
    pub mode: ProjectMode,
    pub dependencies: Vec<Dependency>,
    pub src: Vec<(String, String)>,
}Fields§
§name: SmolStr§version: SmolStr§mode: ProjectMode§dependencies: Vec<Dependency>§src: Vec<(String, String)>Auto Trait Implementations§
impl Freeze for ProjectFiles
impl RefUnwindSafe for ProjectFiles
impl Send for ProjectFiles
impl Sync for ProjectFiles
impl Unpin for ProjectFiles
impl UnwindSafe for ProjectFiles
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