pub struct VideoNote {
pub _file_id: String,
pub _length: i32,
pub _duration: i32,
pub _thumb: Option<PhotoSize>,
pub _file_size: Option<i32>,
}Fields§
§_file_id: StringUnique identifier for this file
_length: i32Video width and height as defined by sender
_duration: i32Duration of the video in seconds as defined by sender
_thumb: Option<PhotoSize>Optional. Video thumbnail
_file_size: Option<i32>Optional. File size
Auto Trait Implementations§
impl Freeze for VideoNote
impl RefUnwindSafe for VideoNote
impl Send for VideoNote
impl Sync for VideoNote
impl Unpin for VideoNote
impl UnsafeUnpin 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