pub struct JoinStats {
pub relations_scanned: usize,
pub joins_performed: usize,
pub total_estimated_cost: u64,
pub total_estimated_rows: u64,
pub plan_depth: usize,
}Expand description
Aggregate statistics for a join plan.
Fields§
§relations_scanned: usize§joins_performed: usize§total_estimated_cost: u64§total_estimated_rows: u64§plan_depth: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for JoinStats
impl RefUnwindSafe for JoinStats
impl Send for JoinStats
impl Sync for JoinStats
impl Unpin for JoinStats
impl UnsafeUnpin for JoinStats
impl UnwindSafe for JoinStats
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> 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