pub struct SaveBigFilePart {
pub file_id: i64,
pub file_part: i32,
pub file_total_parts: i32,
pub bytes: Vec<u8>,
}Expand description
Generated from:
upload.saveBigFilePart#de7b673d file_id:long file_part:int file_total_parts:int bytes:bytes = BoolFields§
§file_id: i64§file_part: i32§file_total_parts: i32§bytes: Vec<u8>Trait Implementations§
Source§impl Clone for SaveBigFilePart
impl Clone for SaveBigFilePart
Source§fn clone(&self) -> SaveBigFilePart
fn clone(&self) -> SaveBigFilePart
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SaveBigFilePart
impl Debug for SaveBigFilePart
Source§impl Identifiable for SaveBigFilePart
impl Identifiable for SaveBigFilePart
Source§const CONSTRUCTOR_ID: u32 = 0xde7b673d
const CONSTRUCTOR_ID: u32 = 0xde7b673d
The constructor ID as specified in the TL schema.
Source§impl PartialEq for SaveBigFilePart
impl PartialEq for SaveBigFilePart
Source§impl RemoteCall for SaveBigFilePart
impl RemoteCall for SaveBigFilePart
Source§impl Serializable for SaveBigFilePart
impl Serializable for SaveBigFilePart
impl StructuralPartialEq for SaveBigFilePart
Auto Trait Implementations§
impl Freeze for SaveBigFilePart
impl RefUnwindSafe for SaveBigFilePart
impl Send for SaveBigFilePart
impl Sync for SaveBigFilePart
impl Unpin for SaveBigFilePart
impl UnsafeUnpin for SaveBigFilePart
impl UnwindSafe for SaveBigFilePart
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