pub struct Snapshot {
pub id: String,
pub parameters: Vec<ParameterTarget>,
}Expand description
A named collection of parameter values — a complete preset “scene”.
Snapshots are a convenience for storing/recalling complete parameter sets.
A SequenceStep expands its referenced snapshot’s
parameters into the step’s own lock list on step advance.
Fields§
§id: StringUnique snapshot identifier.
parameters: Vec<ParameterTarget>Parameter targets stored in this snapshot.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Snapshot
impl RefUnwindSafe for Snapshot
impl Send for Snapshot
impl Sync for Snapshot
impl Unpin for Snapshot
impl UnsafeUnpin for Snapshot
impl UnwindSafe for Snapshot
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