pub struct AttachmentChunk {
pub attachment_id: [u8; 16],
pub chunk_index: u32,
pub total_chunks: u32,
pub data: Vec<u8>,
}Fields§
§attachment_id: [u8; 16]§chunk_index: u32§total_chunks: u32§data: Vec<u8>Trait Implementations§
Source§impl Clone for AttachmentChunk
impl Clone for AttachmentChunk
Source§fn clone(&self) -> AttachmentChunk
fn clone(&self) -> AttachmentChunk
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 AttachmentChunk
impl Debug for AttachmentChunk
Source§impl PartialEq for AttachmentChunk
impl PartialEq for AttachmentChunk
impl Eq for AttachmentChunk
impl StructuralPartialEq for AttachmentChunk
Auto Trait Implementations§
impl Freeze for AttachmentChunk
impl RefUnwindSafe for AttachmentChunk
impl Send for AttachmentChunk
impl Sync for AttachmentChunk
impl Unpin for AttachmentChunk
impl UnsafeUnpin for AttachmentChunk
impl UnwindSafe for AttachmentChunk
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