Enum vulkano::sync::Sharing [] [src]

pub enum Sharing<I> where
    I: Iterator<Item = u32>, 
{ Exclusive, Concurrent(I), }

Declares in which queue(s) a resource can be used.

Variants

The resource is used is only one queue family.

The resource is used in multiple queue families. Can be slower than Exclusive.

Trait Implementations

impl<I: Debug> Debug for Sharing<I> where
    I: Iterator<Item = u32>, 
[src]

[src]

Formats the value using the given formatter. Read more

impl<I: Clone> Clone for Sharing<I> where
    I: Iterator<Item = u32>, 
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<I: PartialEq> PartialEq for Sharing<I> where
    I: Iterator<Item = u32>, 
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<I: Eq> Eq for Sharing<I> where
    I: Iterator<Item = u32>, 
[src]

Auto Trait Implementations

impl<I> Send for Sharing<I> where
    I: Send

impl<I> Sync for Sharing<I> where
    I: Sync