use symphonia_core::probe::Hint; /// An unread byte stream for an audio file. pub struct AudioStream { /// The wrapped file stream. /// /// An input stream *must not* have been read into past the start of the /// audio container's header. pub input: T, /// Extension and MIME type information which may help guide format selection. pub hint: Option, }