[][src]Struct rhyoea::instance::Instance

pub struct Instance { /* fields omitted */ }

The Instance type. See the module level documentation for more

Methods

impl Instance[src]

pub fn new(
    application: &Application,
    extensions: Vec<Extension>,
    layers: Vec<Layer>
) -> Result<Self, InstanceError>
[src]

Create a new Instance.

Example

use rhyoea::instance::{application::Application, Instance};
use rhyoea::result::InstanceError;

let application = Application::default();
let _ = Instance::new(&application, vec![], vec![])?;

Trait Implementations

impl Connection for Instance[src]

unsafe fn command(&self, name: String) -> Result<*const c_void, InstanceError>[src]

Return a function pointer for a Vulkan command

impl Drop for Instance[src]

impl Default for Instance[src]

impl Debug for Instance[src]

Auto Trait Implementations

impl !Send for Instance

impl !Sync for Instance

impl Unpin for Instance

impl UnwindSafe for Instance

impl RefUnwindSafe for Instance

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 = !

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]