pub struct SnapshotRuntime {
pub implementation: Option<String>,
pub graphics_api: Option<String>,
pub backend: Option<String>,
}Expand description
Optional graphics implementation, API, and native backend facts.
Fields§
§implementation: Option<String>§graphics_api: Option<String>§backend: Option<String>Trait Implementations§
Source§impl Clone for SnapshotRuntime
impl Clone for SnapshotRuntime
Source§fn clone(&self) -> SnapshotRuntime
fn clone(&self) -> SnapshotRuntime
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SnapshotRuntime
impl Debug for SnapshotRuntime
Source§impl<'de> Deserialize<'de> for SnapshotRuntime
impl<'de> Deserialize<'de> for SnapshotRuntime
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
impl Eq for SnapshotRuntime
Source§impl PartialEq for SnapshotRuntime
impl PartialEq for SnapshotRuntime
Source§impl Serialize for SnapshotRuntime
impl Serialize for SnapshotRuntime
impl StructuralPartialEq for SnapshotRuntime
Auto Trait Implementations§
impl Freeze for SnapshotRuntime
impl RefUnwindSafe for SnapshotRuntime
impl Send for SnapshotRuntime
impl Sync for SnapshotRuntime
impl Unpin for SnapshotRuntime
impl UnsafeUnpin for SnapshotRuntime
impl UnwindSafe for SnapshotRuntime
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