pub struct VideoNote {
pub file: FileMeta,
pub length: u32,
pub duration: u32,
pub thumb: Option<PhotoSize>,
}Expand description
This object represents a video message (available in Telegram apps as of [v.4.0]).
Fields§
§file: FileMetaMetadata of the video note file.
length: u32Video width and height (diameter of the video message) as defined by sender.
duration: u32Duration of the video in seconds as defined by sender.
thumb: Option<PhotoSize>Video thumbnail.
Trait Implementations§
source§impl<'de> Deserialize<'de> for VideoNote
impl<'de> Deserialize<'de> for VideoNote
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
source§impl PartialEq<VideoNote> for VideoNote
impl PartialEq<VideoNote> for VideoNote
impl Eq for VideoNote
impl StructuralEq for VideoNote
impl StructuralPartialEq for VideoNote
Auto Trait Implementations§
impl RefUnwindSafe for VideoNote
impl Send for VideoNote
impl Sync for VideoNote
impl Unpin for VideoNote
impl UnwindSafe for VideoNote
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