pub struct QueryPlan<T: CdrsTransport + 'static, CM: ConnectionManager<T> + 'static> {
pub nodes: Vec<Arc<Node<T, CM>>>,
}Fields§
§nodes: Vec<Arc<Node<T, CM>>>Implementations§
Trait Implementations§
Source§impl<T: CdrsTransport, CM: ConnectionManager<T>> Clone for QueryPlan<T, CM>
impl<T: CdrsTransport, CM: ConnectionManager<T>> Clone for QueryPlan<T, CM>
Source§impl<T: Debug + CdrsTransport + 'static, CM: Debug + ConnectionManager<T> + 'static> Debug for QueryPlan<T, CM>
impl<T: Debug + CdrsTransport + 'static, CM: Debug + ConnectionManager<T> + 'static> Debug for QueryPlan<T, CM>
Auto Trait Implementations§
impl<T, CM> !RefUnwindSafe for QueryPlan<T, CM>
impl<T, CM> !UnwindSafe for QueryPlan<T, CM>
impl<T, CM> Freeze for QueryPlan<T, CM>
impl<T, CM> Send for QueryPlan<T, CM>
impl<T, CM> Sync for QueryPlan<T, CM>
impl<T, CM> Unpin for QueryPlan<T, CM>
impl<T, CM> UnsafeUnpin for QueryPlan<T, CM>
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