pub struct FileSegmentIndication {
pub id: TransactionID,
pub offset: u64,
pub length: u64,
}Expand description
Indication of the amount of data received from a FileDataPDU
Fields§
§id: TransactionIDUnique transaction ID for the file data.
offset: u64Byte index offset in the file.
length: u64Length of the file data received.
Trait Implementations§
Source§impl Clone for FileSegmentIndication
impl Clone for FileSegmentIndication
Source§fn clone(&self) -> FileSegmentIndication
fn clone(&self) -> FileSegmentIndication
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FileSegmentIndication
impl RefUnwindSafe for FileSegmentIndication
impl Send for FileSegmentIndication
impl Sync for FileSegmentIndication
impl Unpin for FileSegmentIndication
impl UnsafeUnpin for FileSegmentIndication
impl UnwindSafe for FileSegmentIndication
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