pub struct ScatterGatherResult {
pub segments_completed: usize,
pub error: Option<Error>,
}Expand description
A completed scatter-gather transfer result.
This type is returned after a scatter-gather transfer completes, providing access to any error information.
Fields§
§segments_completed: usizeNumber of segments successfully transferred
error: Option<Error>Error if any occurred
Trait Implementations§
Source§impl Clone for ScatterGatherResult
impl Clone for ScatterGatherResult
Source§fn clone(&self) -> ScatterGatherResult
fn clone(&self) -> ScatterGatherResult
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 ScatterGatherResult
impl Debug for ScatterGatherResult
Source§impl PartialEq for ScatterGatherResult
impl PartialEq for ScatterGatherResult
impl Copy for ScatterGatherResult
impl Eq for ScatterGatherResult
impl StructuralPartialEq for ScatterGatherResult
Auto Trait Implementations§
impl Freeze for ScatterGatherResult
impl RefUnwindSafe for ScatterGatherResult
impl Send for ScatterGatherResult
impl Sync for ScatterGatherResult
impl Unpin for ScatterGatherResult
impl UnwindSafe for ScatterGatherResult
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