pub struct AudioInfo {
pub duration: u32,
pub mimetype: String,
pub size: u32,
}
Expand description
Information about an audio clip.
Fields§
§duration: u32
The duration of the audio in milliseconds.
mimetype: String
The mimetype of the audio e.g. audio/aac
.
size: u32
The size of the audio clip in bytes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AudioInfo
impl<'de> Deserialize<'de> for AudioInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AudioInfo
impl RefUnwindSafe for AudioInfo
impl Send for AudioInfo
impl Sync for AudioInfo
impl Unpin for AudioInfo
impl UnwindSafe for AudioInfo
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