pub struct SnapshotGraph {
pub groups: Vec<SnapshotGroup>,
pub nodes: Vec<SnapshotNode>,
pub resources: Vec<SnapshotResource>,
pub texture_views: Vec<SnapshotTextureView>,
pub accesses: Vec<SnapshotAccess>,
pub dependencies: Vec<SnapshotDependency>,
pub roots: Vec<SnapshotRoot>,
pub segments: Vec<SnapshotSegment>,
}Expand description
Relational graph tables that make up the portable captured frame.
Fields§
§groups: Vec<SnapshotGroup>§nodes: Vec<SnapshotNode>§resources: Vec<SnapshotResource>§texture_views: Vec<SnapshotTextureView>§accesses: Vec<SnapshotAccess>§dependencies: Vec<SnapshotDependency>§roots: Vec<SnapshotRoot>§segments: Vec<SnapshotSegment>Trait Implementations§
Source§impl Clone for SnapshotGraph
impl Clone for SnapshotGraph
Source§fn clone(&self) -> SnapshotGraph
fn clone(&self) -> SnapshotGraph
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 SnapshotGraph
impl Debug for SnapshotGraph
Source§impl Default for SnapshotGraph
impl Default for SnapshotGraph
Source§fn default() -> SnapshotGraph
fn default() -> SnapshotGraph
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SnapshotGraph
impl<'de> Deserialize<'de> for SnapshotGraph
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 PartialEq for SnapshotGraph
impl PartialEq for SnapshotGraph
Source§impl Serialize for SnapshotGraph
impl Serialize for SnapshotGraph
impl StructuralPartialEq for SnapshotGraph
Auto Trait Implementations§
impl Freeze for SnapshotGraph
impl RefUnwindSafe for SnapshotGraph
impl Send for SnapshotGraph
impl Sync for SnapshotGraph
impl Unpin for SnapshotGraph
impl UnsafeUnpin for SnapshotGraph
impl UnwindSafe for SnapshotGraph
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