Struct vulkano::instance::RawInstanceExtensions [] [src]

pub struct RawInstanceExtensions(_);

Set of extensions, not restricted to those vulkano knows about.

This is useful when interacting with external code that has statically-unknown extension requirements.

Methods

impl RawInstanceExtensions
[src]

Constructs an extension set containing the supplied extensions.

Constructs an empty extension set.

Adds an extension to the set if it is not already present.

Returns the intersection of this set and another.

Returns the difference of another set from this one.

impl RawInstanceExtensions
[src]

See the docs of supported_by_core().

Returns a RawExtensions object with extensions supported by the core driver.

Trait Implementations

impl Clone for RawInstanceExtensions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for RawInstanceExtensions
[src]

impl PartialEq for RawInstanceExtensions
[src]

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

This method tests for !=.

impl Debug for RawInstanceExtensions
[src]

Formats the value using the given formatter.

impl<'a> From<&'a InstanceExtensions> for RawInstanceExtensions
[src]

Performs the conversion.