Struct psa::psa_project::Project[][src]

pub struct Project {
    pub name: String,
    pub path: String,
    pub modules: Vec<Module>,
    pub project_type: String,
}

Fields

name: Stringpath: Stringmodules: Vec<Module>project_type: String

Implementations

impl Project[src]

pub fn add_module(&mut self, module: Module)[src]

pub fn add_modules(&mut self, modules: &mut Vec<Module>)[src]

pub fn new(name: &str, path: &str, project_type: &str) -> Self[src]

Auto Trait Implementations

impl RefUnwindSafe for Project

impl Send for Project

impl Sync for Project

impl Unpin for Project

impl UnwindSafe for Project

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.