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