pub struct CopyChunk {
pub source_offset: u64,
pub target_offset: u64,
pub length: u32,
}Expand description
One SRV_COPYCHUNK entry ([MS-SMB2] §2.2.31.1).
Fields§
§source_offset: u64Byte offset in the source file.
target_offset: u64Byte offset in the target file.
length: u32Number of bytes to copy.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CopyChunk
impl RefUnwindSafe for CopyChunk
impl Send for CopyChunk
impl Sync for CopyChunk
impl Unpin for CopyChunk
impl UnsafeUnpin for CopyChunk
impl UnwindSafe for CopyChunk
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