pub struct SaveFilePart {
pub file_id: i64,
pub file_part: i32,
pub bytes: Vec<u8>,
}Expand description
Generated from:
upload.saveFilePart#b304a621 file_id:long file_part:int bytes:bytes = BoolFields§
§file_id: i64§file_part: i32§bytes: Vec<u8>Trait Implementations§
Source§impl Clone for SaveFilePart
impl Clone for SaveFilePart
Source§fn clone(&self) -> SaveFilePart
fn clone(&self) -> SaveFilePart
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 SaveFilePart
impl Debug for SaveFilePart
Source§impl Identifiable for SaveFilePart
impl Identifiable for SaveFilePart
Source§const CONSTRUCTOR_ID: u32 = 0xb304a621
const CONSTRUCTOR_ID: u32 = 0xb304a621
The constructor ID as specified in the TL schema.
Source§impl PartialEq for SaveFilePart
impl PartialEq for SaveFilePart
Source§impl RemoteCall for SaveFilePart
impl RemoteCall for SaveFilePart
Source§impl Serializable for SaveFilePart
impl Serializable for SaveFilePart
impl StructuralPartialEq for SaveFilePart
Auto Trait Implementations§
impl Freeze for SaveFilePart
impl RefUnwindSafe for SaveFilePart
impl Send for SaveFilePart
impl Sync for SaveFilePart
impl Unpin for SaveFilePart
impl UnsafeUnpin for SaveFilePart
impl UnwindSafe for SaveFilePart
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