pub struct Audio {
pub _file_id: String,
pub _duration: i32,
pub _performer: Option<String>,
pub _title: Option<String>,
pub _mime_type: Option<String>,
pub _file_size: Option<i32>,
}Expand description
This object represents an audio file to be treated as music by the Telegram clients.
Fields§
§_file_id: StringUnique identifier for this file
_duration: i32Duration of the audio in seconds as defined by sender
_performer: Option<String>Optional. Performer of the audio as defined by sender or by audio tags
_title: Option<String>Optional. Title of the audio as defined by sender or by audio tags
_mime_type: Option<String>Optional. MIME type of the file as defined by sender
_file_size: Option<i32>Optional. File size
Auto Trait Implementations§
impl Freeze for Audio
impl RefUnwindSafe for Audio
impl Send for Audio
impl Sync for Audio
impl Unpin for Audio
impl UnsafeUnpin for Audio
impl UnwindSafe for Audio
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