pub struct BridgeOutput {
pub stream: StreamValue,
pub diagnostics: Vec<Diagnostic>,
}Expand description
Result of a bridge conversion: the produced stream plus any diagnostics.
Fields§
§stream: StreamValueConverted stream carrying the resulting MIDI or PCM packets.
diagnostics: Vec<Diagnostic>Diagnostics emitted while converting (for example, unrepresentable pitches).
Auto Trait Implementations§
impl !Freeze for BridgeOutput
impl RefUnwindSafe for BridgeOutput
impl Send for BridgeOutput
impl Sync for BridgeOutput
impl Unpin for BridgeOutput
impl UnsafeUnpin for BridgeOutput
impl UnwindSafe for BridgeOutput
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