pub struct FrameSnapshot {
pub frame_id: usize,
pub format: FrameFormat,
pub elements: Vec<FlowElementSnapshot>,
}Expand description
Snapshot of a sub-frame and its contents.
Fields§
§frame_id: usize§format: FrameFormat§elements: Vec<FlowElementSnapshot>Trait Implementations§
Source§impl Clone for FrameSnapshot
impl Clone for FrameSnapshot
Source§fn clone(&self) -> FrameSnapshot
fn clone(&self) -> FrameSnapshot
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 FrameSnapshot
impl Debug for FrameSnapshot
Source§impl PartialEq for FrameSnapshot
impl PartialEq for FrameSnapshot
impl Eq for FrameSnapshot
impl StructuralPartialEq for FrameSnapshot
Auto Trait Implementations§
impl Freeze for FrameSnapshot
impl RefUnwindSafe for FrameSnapshot
impl Send for FrameSnapshot
impl Sync for FrameSnapshot
impl Unpin for FrameSnapshot
impl UnsafeUnpin for FrameSnapshot
impl UnwindSafe for FrameSnapshot
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