[][src]Struct build_utils::build::BuildBuilder

pub struct BuildBuilder { /* fields omitted */ }

Implementations

impl BuildBuilder[src]

pub fn build(self) -> Result<Box<Build>, BuildCreateError>[src]

pub fn name<V>(self, value: V) -> Self where
    V: Into<String>, 
[src]

pub fn source(self, source: Box<dyn BuildSource>) -> Self[src]

pub fn build_path(self, path: PathBuf) -> Self[src]

pub fn install_prefix(self, path: PathBuf) -> Self[src]

pub fn library_type(self, ltype: LibraryType) -> Self[src]

pub fn remove_build_dir(self, enabled: bool) -> Self[src]

pub fn add_step(self, step: Box<dyn BuildStep>) -> Self[src]

Auto Trait Implementations

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.