pub struct JoinResult {
pub rows: JoinRows,
pub columns: Vec<String>,
}Expand description
Result of a streaming join execution.
Fields§
§rows: JoinRowsThe joined rows with synthetic row IDs.
columns: Vec<String>Column names for the combined result.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinResult
impl RefUnwindSafe for JoinResult
impl Send for JoinResult
impl Sync for JoinResult
impl Unpin for JoinResult
impl UnsafeUnpin for JoinResult
impl UnwindSafe for JoinResult
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