pub struct WriteItem {
pub source: ItemSource,
pub target_side: Side,
pub storage_write: StorageWrite,
pub status_write: StatusWrite,
pub mapping_uid: MappingUidSource,
pub on_complete: Option<DeletionCompletionHandle>,
}Expand description
Write item to the target side from the source on the opposite side.
Fields§
§source: ItemSourceData from the source side (the side being read from).
target_side: SideWhich side to write to.
storage_write: StorageWrite§status_write: StatusWrite§mapping_uid: MappingUidSource§on_complete: Option<DeletionCompletionHandle>Optional handle to signal collection deletion barrier when this operation completes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WriteItem
impl RefUnwindSafe for WriteItem
impl Send for WriteItem
impl Sync for WriteItem
impl Unpin for WriteItem
impl UnsafeUnpin for WriteItem
impl UnwindSafe for WriteItem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
Source§fn try_octets_into(
self,
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
Source§fn octets_into(self) -> Target
fn octets_into(self) -> Target
Performs an infallible conversion.