[][src]Struct elvis_backend::Crate

pub struct Crate { /* fields omitted */ }

Elvis crate

Implementations

impl Crate[src]

pub fn new() -> Result<Crate, Error>[src]

New crate data

pub fn debug(&mut self, debug: bool) -> &mut Self[src]

Reset debug mode

pub fn out_dir(&mut self, dir: PathBuf) -> &mut Self[src]

Reset out dir

pub fn wasm(&self) -> &PathBuf[src]

Port the wasm path

pub fn root(&mut self, dir: PathBuf) -> &mut Self[src]

Reset root dir

pub fn compile(&self) -> Result<ExitStatus, Error>[src]

Compile the crate

pub fn bindgen(&self) -> Result<(), Error>[src]

Compile wasm files

pub fn compile_and_bindgen(&self) -> Result<(), Error>[src]

Compile crate and bindgen

pub fn watch(&self, wtx: Sender<bool>) -> Result<(), Error>[src]

Watch the file system

pub fn build(&self) -> Result<(), Error>[src]

Compile APP

pub fn serve(self, port: u16) -> Result<(), Error>[src]

Serve APP

Trait Implementations

impl Clone for Crate[src]

Auto Trait Implementations

impl RefUnwindSafe for Crate

impl Send for Crate

impl Sync for Crate

impl Unpin for Crate

impl UnwindSafe for Crate

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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

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