Struct vulkano::instance::RawDeviceExtensions [] [src]

pub struct RawDeviceExtensions(_);

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 RawDeviceExtensions
[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 RawDeviceExtensions
[src]

[src]

See the docs of supported_by_device().

[src]

Returns an Extensions object with extensions supported by the PhysicalDevice.

Trait Implementations

impl Clone for RawDeviceExtensions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for RawDeviceExtensions
[src]

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

[src]

Formats the value using the given formatter.

impl FromIterator<CString> for RawDeviceExtensions
[src]

[src]

Creates a value from an iterator. Read more

impl<'a> From<&'a DeviceExtensions> for RawDeviceExtensions
[src]

[src]

Performs the conversion.