/// Trait for a metadata-providing object.
////// For example, a single audio file or track.
pubtraitProvider{/// Returns the value of a tag with the tag key given as parameter.
////// If there is no corresponding entry in the metadata then `None` should be returned.
fntag_value(&self, &str)->Option<String>;}