[][src]Struct saltwater::Program

pub struct Program<T, E = VecDeque<CompileError>> {
    pub result: Result<T, E>,
    pub warnings: VecDeque<CompileWarning>,
    pub files: Files,
}

A result which includes all warnings, even for Err variants.

If successful, this returns an Ok(T). If unsuccessful, this returns an Err(E). Regardless, this always returns all warnings found.

Fields

result: Result<T, E>

Either the errors found while compiling the program, or the successfully compiled program.

warnings: VecDeque<CompileWarning>

The warnings emitted while compiling the program

files: Files

The files that were #included by the preprocessor

Auto Trait Implementations

impl<T, E = VecDeque<Locatable<Error>>> !RefUnwindSafe for Program<T, E>

impl<T, E = VecDeque<Locatable<Error>>> !Send for Program<T, E>

impl<T, E = VecDeque<Locatable<Error>>> !Sync for Program<T, E>

impl<T, E> Unpin for Program<T, E> where
    E: Unpin,
    T: Unpin

impl<T, E> UnwindSafe for Program<T, E> where
    E: UnwindSafe,
    T: UnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,