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]

[src]

Constructs an extension set containing the supplied extensions.

[src]

Constructs an empty extension set.

[src]

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

[src]

Returns the intersection of this set and another.

[src]

Returns the difference of another set from this one.

[src]

Returns the union of both extension sets

[src]

impl RawInstanceExtensions
[src]

[src]

See the docs of supported_by_core().

[src]

Same as supported_by_core_raw(), but allows specifying a loader.

[src]

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

[src]

Same as supported_by_core, but allows specifying a loader.

Trait Implementations

impl Clone for RawInstanceExtensions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for RawInstanceExtensions
[src]

impl PartialEq for RawInstanceExtensions
[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 Debug for RawInstanceExtensions
[src]

[src]

Formats the value using the given formatter.

impl FromIterator<CString> for RawInstanceExtensions
[src]

[src]

Creates a value from an iterator. Read more

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

[src]

Performs the conversion.