pub struct Video {
pub duration: Integer,
pub file_id: String,
pub file_unique_id: String,
pub height: Integer,
pub width: Integer,
pub cover: Option<Vec<PhotoSize>>,
pub file_name: Option<String>,
pub file_size: Option<Integer>,
pub mime_type: Option<String>,
pub start_timestamp: Option<Integer>,
pub thumbnail: Option<PhotoSize>,
}
Expand description
Represents a video file.
Fields§
§duration: Integer
Duration in seconds as defined by sender.
file_id: String
Identifier of the file.
Can be used to download or reuse the file.
file_unique_id: String
Unique identifier of the file.
It is supposed to be the same over time and for different bots. Can’t be used to download or reuse the file.
height: Integer
Height as defined by sender.
width: Integer
Width as defined by sender.
cover: Option<Vec<PhotoSize>>
Available sizes of the cover of the video in the message.
file_name: Option<String>
Original filename as defined by sender.
file_size: Option<Integer>
File size in bytes.
mime_type: Option<String>
MIME type as defined by sender.
start_timestamp: Option<Integer>
Timestamp in seconds from which the video will play in the message.
thumbnail: Option<PhotoSize>
Thumbnail.
Implementations§
Source§impl Video
impl Video
Sourcepub fn new<A, B>(
duration: Integer,
file_id: A,
file_unique_id: B,
height: Integer,
width: Integer,
) -> Self
pub fn new<A, B>( duration: Integer, file_id: A, file_unique_id: B, height: Integer, width: Integer, ) -> Self
Creates a new Video
.
§Arguments
duration
- Duration of the video in seconds.file_id
- Identifier of the file.file_unique_id
- Unique identifier of the file.height
- Height of the video.width
- Width of the video.
Sourcepub fn with_cover<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = PhotoSize>,
pub fn with_cover<T>(self, value: T) -> Selfwhere
T: IntoIterator<Item = PhotoSize>,
Sourcepub fn with_file_name<T>(self, value: T) -> Self
pub fn with_file_name<T>(self, value: T) -> Self
Sourcepub fn with_file_size(self, value: Integer) -> Self
pub fn with_file_size(self, value: Integer) -> Self
Sourcepub fn with_mime_type<T>(self, value: T) -> Self
pub fn with_mime_type<T>(self, value: T) -> Self
Sourcepub fn with_start_timestamp(self, value: Integer) -> Self
pub fn with_start_timestamp(self, value: Integer) -> Self
Sets a new start timestamp.
§Arguments
value
- Timestamp in seconds from which the video will play in the message.
Sourcepub fn with_thumbnail(self, value: PhotoSize) -> Self
pub fn with_thumbnail(self, value: PhotoSize) -> Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Video
impl<'de> Deserialize<'de> for Video
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 From<Video> for ExternalReplyData
impl From<Video> for ExternalReplyData
Source§impl From<Video> for MessageDataVideo
impl From<Video> for MessageDataVideo
Source§impl PartialOrd for Video
impl PartialOrd for Video
impl StructuralPartialEq for Video
Auto Trait Implementations§
impl Freeze for Video
impl RefUnwindSafe for Video
impl Send for Video
impl Sync for Video
impl Unpin for Video
impl UnwindSafe for Video
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