Struct solp::ast::Solution[][src]

pub struct Solution<'input> {
    pub format: &'input str,
    pub product: &'input str,
    pub projects: Vec<Project<'input>>,
    pub versions: Vec<Version<'input>>,
    pub solution_configs: Vec<Conf<'input>>,
    pub project_configs: Vec<ProjectConfigs<'input>>,
    pub dependencies: DiGraphMap<&'input str, i32>,
}

Fields

format: &'input strproduct: &'input strprojects: Vec<Project<'input>>versions: Vec<Version<'input>>solution_configs: Vec<Conf<'input>>project_configs: Vec<ProjectConfigs<'input>>dependencies: DiGraphMap<&'input str, i32>

Trait Implementations

impl<'input> Clone for Solution<'input>[src]

impl<'input> Debug for Solution<'input>[src]

impl<'input> Default for Solution<'input>[src]

Auto Trait Implementations

impl<'input> RefUnwindSafe for Solution<'input>

impl<'input> Send for Solution<'input>

impl<'input> Sync for Solution<'input>

impl<'input> Unpin for Solution<'input>

impl<'input> UnwindSafe for Solution<'input>

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> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.