pub struct VulkanOptions {
pub enabled: bool,
pub params: Vec<(String, String)>,
}Expand description
Vulkan renderer options
Fields§
§enabled: boolEnable Vulkan renderer
params: Vec<(String, String)>Vulkan parameters
Implementations§
Source§impl VulkanOptions
impl VulkanOptions
Trait Implementations§
Source§impl Clone for VulkanOptions
impl Clone for VulkanOptions
Source§fn clone(&self) -> VulkanOptions
fn clone(&self) -> VulkanOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VulkanOptions
impl Debug for VulkanOptions
Source§impl Default for VulkanOptions
impl Default for VulkanOptions
Source§fn default() -> VulkanOptions
fn default() -> VulkanOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VulkanOptions
impl RefUnwindSafe for VulkanOptions
impl Send for VulkanOptions
impl Sync for VulkanOptions
impl Unpin for VulkanOptions
impl UnwindSafe for VulkanOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more