pub struct PreparedBufferView {
pub id: u64,
pub buffer_indices: Vec<usize>,
pub byte_offset: usize,
pub byte_size: usize,
pub dependencies: Vec<u64>,
}Expand description
Prepared zero-copy buffer view operation.
Fields§
§id: u64Unique operation identifier.
buffer_indices: Vec<usize>Output and base buffer indices in ExecutionPlan order.
buffer_indices[0] is output view, buffer_indices[1] is base source.
byte_offset: usizeExpected byte offset into base for the view.
byte_size: usizeExpected byte size of the view.
dependencies: Vec<u64>Operation IDs that must complete before this view is consumed.
Trait Implementations§
Source§impl Clone for PreparedBufferView
impl Clone for PreparedBufferView
Source§fn clone(&self) -> PreparedBufferView
fn clone(&self) -> PreparedBufferView
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 PreparedBufferView
impl RefUnwindSafe for PreparedBufferView
impl Send for PreparedBufferView
impl Sync for PreparedBufferView
impl Unpin for PreparedBufferView
impl UnsafeUnpin for PreparedBufferView
impl UnwindSafe for PreparedBufferView
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more