struct Strip<'a> {
is_main: bool,
meter: (f32, f32),
feed: &'a str,
time: f64,
}Expand description
What one strip needs to know about its bus beyond the Bus itself.
Fields§
§is_main: bool§meter: (f32, f32)§feed: &'a strTracks and buses that sum into this one, comma-joined.
time: f64Playhead, in timeline seconds: every parameter is read and written there.
Auto Trait Implementations§
impl<'a> Freeze for Strip<'a>
impl<'a> RefUnwindSafe for Strip<'a>
impl<'a> Send for Strip<'a>
impl<'a> Sync for Strip<'a>
impl<'a> Unpin for Strip<'a>
impl<'a> UnwindSafe for Strip<'a>
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
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more