pub struct ProjectedRow<E: EntityKind> { /* private fields */ }Expand description
ProjectedRow
One scalar projection output row emitted in planner declaration order.
values carries evaluated expression outputs for this row.
Implementations§
Source§impl<E: EntityKind> ProjectedRow<E>
impl<E: EntityKind> ProjectedRow<E>
Sourcepub fn into_parts(self) -> (Id<E>, Vec<Value>)
pub fn into_parts(self) -> (Id<E>, Vec<Value>)
Consume and return (id, projected_values).
Trait Implementations§
Source§impl<E: Clone + EntityKind> Clone for ProjectedRow<E>
impl<E: Clone + EntityKind> Clone for ProjectedRow<E>
Source§fn clone(&self) -> ProjectedRow<E>
fn clone(&self) -> ProjectedRow<E>
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<E: Debug + EntityKind> Debug for ProjectedRow<E>
impl<E: Debug + EntityKind> Debug for ProjectedRow<E>
Source§impl<E: PartialEq + EntityKind> PartialEq for ProjectedRow<E>
impl<E: PartialEq + EntityKind> PartialEq for ProjectedRow<E>
impl<E: Eq + EntityKind> Eq for ProjectedRow<E>
impl<E: EntityKind> StructuralPartialEq for ProjectedRow<E>
Auto Trait Implementations§
impl<E> Freeze for ProjectedRow<E>
impl<E> RefUnwindSafe for ProjectedRow<E>
impl<E> Send for ProjectedRow<E>
impl<E> Sync for ProjectedRow<E>
impl<E> Unpin for ProjectedRow<E>
impl<E> UnsafeUnpin for ProjectedRow<E>
impl<E> UnwindSafe for ProjectedRow<E>
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