pub struct EncodedBurst {
pub audio: Vec<f32>,
pub packet_meta: Vec<EncodedPacketMeta>,
}Expand description
Full encoded burst with passband audio plus oracle packet metadata.
Fields§
§audio: Vec<f32>Complete burst waveform at the audio sample rate.
packet_meta: Vec<EncodedPacketMeta>Per-packet metadata for oracle decode and debugging.
Trait Implementations§
Source§impl Clone for EncodedBurst
impl Clone for EncodedBurst
Source§fn clone(&self) -> EncodedBurst
fn clone(&self) -> EncodedBurst
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 moreAuto Trait Implementations§
impl Freeze for EncodedBurst
impl RefUnwindSafe for EncodedBurst
impl Send for EncodedBurst
impl Sync for EncodedBurst
impl Unpin for EncodedBurst
impl UnwindSafe for EncodedBurst
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