pub struct Copy {
pub src: CopySrc,
pub addr: u64,
pub len: u16,
}
Expand description
Copy Operation
- src: The source of the copy (Dict or Output)
- addr: The absolute start position in the src to start copying from
- len: The number of bytes to copy.
Fields§
§src: CopySrc
§addr: u64
§len: u16
Trait Implementations§
impl Copy for Copy
impl Eq for Copy
impl StructuralPartialEq for Copy
Auto Trait Implementations§
impl Freeze for Copy
impl RefUnwindSafe for Copy
impl Send for Copy
impl Sync for Copy
impl Unpin for Copy
impl UnwindSafe for Copy
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