Trait symphonia_core::audio::RawSample
source · pub trait RawSample: Sample {
type RawType: Copy + Default + Sealed;
// Required method
fn into_raw_sample(self) -> Self::RawType;
}
Expand description
RawSample
provides a typed interface for converting a Sample
from it’s in-memory data type
to actual binary type.
Required Associated Types§
Required Methods§
fn into_raw_sample(self) -> Self::RawType
Object Safety§
This trait is not object safe.