pub struct ScriptData {
pub data: Vec<Vec<f32>>,
}Expand description
Script data returned from a sweep.
Fields§
§data: Vec<Vec<f32>>Data rows (one per channel)
Trait Implementations§
Source§impl Clone for ScriptData
impl Clone for ScriptData
Source§fn clone(&self) -> ScriptData
fn clone(&self) -> ScriptData
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 ScriptData
impl Debug for ScriptData
Source§impl Default for ScriptData
impl Default for ScriptData
Source§fn default() -> ScriptData
fn default() -> ScriptData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScriptData
impl RefUnwindSafe for ScriptData
impl Send for ScriptData
impl Sync for ScriptData
impl Unpin for ScriptData
impl UnwindSafe for ScriptData
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