[][src]Struct nannou::vk::InstanceBuilder

pub struct InstanceBuilder {
    pub app_info: Option<ApplicationInfo<'static>>,
    pub extensions: Option<InstanceExtensions>,
    pub layers: Vec<String>,
    pub loader: Option<FunctionPointers<Box<dyn Loader + Send + Sync>>>,
}

A builder struct that makes the process of building an instance more modular.

Fields

app_info: Option<ApplicationInfo<'static>>extensions: Option<InstanceExtensions>layers: Vec<String>loader: Option<FunctionPointers<Box<dyn Loader + Send + Sync>>>

Methods

impl InstanceBuilder[src]

pub fn new() -> Self[src]

Begin building a vulkano instance.

pub fn app_info(self, app_info: ApplicationInfo<'static>) -> Self[src]

Specify the application info with which the instance should be created.

pub fn extensions(self, extensions: InstanceExtensions) -> Self[src]

Specify the exact extensions to enable for the instance.

pub fn add_extensions(self, ext: InstanceExtensions) -> Self[src]

Add the given extensions to the set of existing extensions within the builder.

Unlike the extensions method, this does not disable pre-existing extensions.

pub fn layers<L>(self, layers: L) -> Self where
    L: IntoIterator,
    L::Item: Into<String>, 
[src]

Specify the exact layers to enable for the instance.

pub fn add_layers<L>(self, layers: L) -> Self where
    L: IntoIterator,
    L::Item: Into<String>, 
[src]

Extend the existing list of layers with the given layers.

pub fn add_loader(
    self,
    loader: FunctionPointers<Box<dyn Loader + Send + Sync>>
) -> Self
[src]

Add custom vulkan loader

pub fn build(self) -> Result<Arc<Instance>, InstanceCreationError>[src]

Build the vulkan instance with the existing parameters.

Trait Implementations

impl Default for InstanceBuilder[src]

Auto Trait Implementations

Blanket Implementations

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.