Struct devices::virtio::gpu::GpuParameters
source · pub struct GpuParameters {Show 23 fields
pub mode: GpuMode,
pub max_num_displays: u32,
pub audio_device_mode: AudioDeviceMode,
pub display_params: Vec<DisplayParameters>,
pub __width_compat: Option<u32>,
pub __height_compat: Option<u32>,
pub renderer_use_egl: bool,
pub renderer_use_gles: bool,
pub renderer_use_glx: bool,
pub renderer_use_surfaceless: bool,
pub use_vulkan: Option<bool>,
pub wsi: Option<GpuWsi>,
pub udmabuf: bool,
pub cache_path: Option<String>,
pub cache_size: Option<String>,
pub pci_address: Option<PciAddress>,
pub pci_bar_size: u64,
pub capset_mask: u64,
pub external_blob: bool,
pub system_blob: bool,
pub fixed_blob_mapping: bool,
pub allow_implicit_render_server_exec: bool,
pub renderer_features: Option<String>,
}
Fields§
§mode: GpuMode
§max_num_displays: u32
§audio_device_mode: AudioDeviceMode
§display_params: Vec<DisplayParameters>
§__width_compat: Option<u32>
§__height_compat: Option<u32>
§renderer_use_egl: bool
§renderer_use_gles: bool
§renderer_use_glx: bool
§renderer_use_surfaceless: bool
§use_vulkan: Option<bool>
§wsi: Option<GpuWsi>
§udmabuf: bool
§cache_path: Option<String>
§cache_size: Option<String>
§pci_address: Option<PciAddress>
§pci_bar_size: u64
§capset_mask: u64
§external_blob: bool
§system_blob: bool
§fixed_blob_mapping: bool
§allow_implicit_render_server_exec: bool
§renderer_features: Option<String>
Trait Implementations§
source§impl Clone for GpuParameters
impl Clone for GpuParameters
source§fn clone(&self) -> GpuParameters
fn clone(&self) -> GpuParameters
Returns a copy 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 GpuParameters
impl Debug for GpuParameters
source§impl Default for GpuParameters
impl Default for GpuParameters
source§impl<'de> Deserialize<'de> for GpuParameterswhere
GpuParameters: Default,
impl<'de> Deserialize<'de> for GpuParameterswhere
GpuParameters: Default,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromArgValue for GpuParameters
impl FromArgValue for GpuParameters
Auto Trait Implementations§
impl RefUnwindSafe for GpuParameters
impl Send for GpuParameters
impl Sync for GpuParameters
impl Unpin for GpuParameters
impl UnwindSafe for GpuParameters
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.