pub struct VideoNote {
pub duration: Integer,
pub file_id: String,
pub file_unique_id: String,
pub length: Integer,
pub file_size: Option<Integer>,
pub thumbnail: Option<PhotoSize>,
}Expand description
Represents a video message.
Fields§
§duration: IntegerDuration in seconds.
file_id: StringIdentifier of the file.
Can be used to download or reuse the file.
file_unique_id: StringUnique 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.
length: IntegerWidth and height (diameter).
file_size: Option<Integer>File size in bytes.
thumbnail: Option<PhotoSize>Thumbnail.
Implementations§
Source§impl VideoNote
impl VideoNote
Sourcepub fn new<A, B>(
duration: Integer,
file_id: A,
file_unique_id: B,
length: Integer,
) -> Self
pub fn new<A, B>( duration: Integer, file_id: A, file_unique_id: B, length: Integer, ) -> Self
Creates a new VideoNote.
§Arguments
duration- Duration in seconds.file_id- Identifier of the file.file_unique_id- Unique identifier of the file.length- Width and height (diameter).
Sourcepub fn with_file_size(self, value: Integer) -> Self
pub fn with_file_size(self, value: Integer) -> Self
Sourcepub fn with_thumbnail(self, value: PhotoSize) -> Self
pub fn with_thumbnail(self, value: PhotoSize) -> Self
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 From<VideoNote> for ExternalReplyData
impl From<VideoNote> for ExternalReplyData
Source§impl PartialOrd for VideoNote
impl PartialOrd for VideoNote
impl StructuralPartialEq for VideoNote
Auto Trait Implementations§
impl Freeze for VideoNote
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