Struct godot::engine::rendering_device::DriverResource

pub struct DriverResource { /* private fields */ }

Implementations§

§

impl DriverResource

pub const LOGICAL_DEVICE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_LOGICAL_DEVICE

pub const PHYSICAL_DEVICE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_PHYSICAL_DEVICE

pub const TOPMOST_OBJECT: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_TOPMOST_OBJECT

pub const COMMAND_QUEUE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_COMMAND_QUEUE

pub const QUEUE_FAMILY: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_QUEUE_FAMILY

pub const TEXTURE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_TEXTURE

pub const TEXTURE_VIEW: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_TEXTURE_VIEW

pub const TEXTURE_DATA_FORMAT: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_TEXTURE_DATA_FORMAT

pub const SAMPLER: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_SAMPLER

pub const UNIFORM_SET: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_UNIFORM_SET

pub const BUFFER: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_BUFFER

pub const COMPUTE_PIPELINE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_COMPUTE_PIPELINE

pub const RENDER_PIPELINE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_RENDER_PIPELINE

pub const VULKAN_DEVICE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_DEVICE

pub const VULKAN_PHYSICAL_DEVICE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_PHYSICAL_DEVICE

pub const VULKAN_INSTANCE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_INSTANCE

pub const VULKAN_QUEUE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_QUEUE

pub const VULKAN_QUEUE_FAMILY_INDEX: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_QUEUE_FAMILY_INDEX

pub const VULKAN_IMAGE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_IMAGE

pub const VULKAN_IMAGE_VIEW: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_IMAGE_VIEW

pub const VULKAN_IMAGE_NATIVE_TEXTURE_FORMAT: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_IMAGE_NATIVE_TEXTURE_FORMAT

pub const VULKAN_SAMPLER: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_SAMPLER

pub const VULKAN_DESCRIPTOR_SET: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_DESCRIPTOR_SET

pub const VULKAN_BUFFER: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_BUFFER

pub const VULKAN_COMPUTE_PIPELINE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_COMPUTE_PIPELINE

pub const VULKAN_RENDER_PIPELINE: DriverResource = _

Godot enumerator name: DRIVER_RESOURCE_VULKAN_RENDER_PIPELINE

Trait Implementations§

§

impl Clone for DriverResource

§

fn clone(&self) -> DriverResource

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for DriverResource

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl EngineEnum for DriverResource

§

fn try_from_ord(ord: i32) -> Option<DriverResource>

§

fn ord(self) -> i32

Ordinal value of the enumerator, as specified in Godot. This is not necessarily unique.
§

fn from_ord(ord: i32) -> Self

§

impl FromGodot for DriverResource

§

fn try_from_godot( via: <DriverResource as GodotConvert>::Via ) -> Result<DriverResource, ConvertError>

Performs the conversion.
§

fn from_godot(via: Self::Via) -> Self

⚠️ Performs the conversion. Read more
§

fn try_from_variant(variant: &Variant) -> Result<Self, ConvertError>

Performs the conversion from a Variant.
§

fn from_variant(variant: &Variant) -> Self

⚠️ Performs the conversion from a Variant. Read more
§

impl GodotConvert for DriverResource

§

type Via = i32

The type through which Self is represented in Godot.
§

impl Hash for DriverResource

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for DriverResource

§

fn eq(&self, other: &DriverResource) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl ToGodot for DriverResource

§

fn to_godot(&self) -> <DriverResource as GodotConvert>::Via

Converts this type to the Godot type by reference, usually by cloning.
§

fn into_godot(self) -> Self::Via

Converts this type to the Godot type. Read more
§

fn to_variant(&self) -> Variant

Converts this type to a Variant.
§

impl Copy for DriverResource

§

impl Eq for DriverResource

§

impl StructuralPartialEq for DriverResource

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.