pub struct PushResult {
pub forward: Vec<Arc<NDArray>>,
pub sequence_done: bool,
}Expand description
Result of pushing a frame: which frames to forward downstream now, and whether a capture sequence completed on this push.
Fields§
§forward: Vec<Arc<NDArray>>Frames to forward downstream immediately, in order.
sequence_done: boolTrue if the post-trigger count was reached on this push.
Trait Implementations§
Source§impl Debug for PushResult
impl Debug for PushResult
Source§impl Default for PushResult
impl Default for PushResult
Source§fn default() -> PushResult
fn default() -> PushResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PushResult
impl !RefUnwindSafe for PushResult
impl Send for PushResult
impl Sync for PushResult
impl Unpin for PushResult
impl UnsafeUnpin for PushResult
impl !UnwindSafe for PushResult
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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