Struct symphonia_core::probe::ProbedMetadata
source · pub struct ProbedMetadata { /* private fields */ }
Expand description
Metadata that came from the metadata
field of ProbeResult
.
Implementations§
source§impl ProbedMetadata
impl ProbedMetadata
sourcepub fn get(&mut self) -> Option<Metadata<'_>>
pub fn get(&mut self) -> Option<Metadata<'_>>
Returns the metadata that was found during probing.
If any additional metadata was present outside of the container, this is
Some
and the log will have at least one item in it.
sourcepub fn into_inner(self) -> Option<MetadataLog>
pub fn into_inner(self) -> Option<MetadataLog>
Returns the inner metadata log, if it was present.
Auto Trait Implementations§
impl RefUnwindSafe for ProbedMetadata
impl Send for ProbedMetadata
impl Sync for ProbedMetadata
impl Unpin for ProbedMetadata
impl UnwindSafe for ProbedMetadata
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