pub enum DescriptorSelectorNode<S> {
Leaf(DescriptorLeafSelector<S>),
Cartesian(CartesianProductSelector<S, DescriptorScalarMoveUnion<S>, DescriptorFlatSelector<S>, DescriptorFlatSelector<S>>),
}Variants§
Leaf(DescriptorLeafSelector<S>)
Cartesian(CartesianProductSelector<S, DescriptorScalarMoveUnion<S>, DescriptorFlatSelector<S>, DescriptorFlatSelector<S>>)
Trait Implementations§
Source§impl<S> Debug for DescriptorSelectorNode<S>where
S: PlanningSolution + 'static,
impl<S> Debug for DescriptorSelectorNode<S>where
S: PlanningSolution + 'static,
Source§impl<S> MoveSelector<S, DescriptorScalarMoveUnion<S>> for DescriptorSelectorNode<S>
impl<S> MoveSelector<S, DescriptorScalarMoveUnion<S>> for DescriptorSelectorNode<S>
type Cursor<'a> = DescriptorSelectorCursor<S> where Self: 'a
fn open_cursor<'a, D: Director<S>>( &'a self, score_director: &D, ) -> Self::Cursor<'a>
fn size<D: Director<S>>(&self, score_director: &D) -> usize
fn iter_moves<'a, D: Director<S>>( &'a self, score_director: &D, ) -> MoveSelectorIter<S, M, Self::Cursor<'a>> ⓘ
fn append_moves<D: Director<S>>( &self, score_director: &D, arena: &mut MoveArena<M>, )
fn is_never_ending(&self) -> bool
Auto Trait Implementations§
impl<S> !Freeze for DescriptorSelectorNode<S>
impl<S> !RefUnwindSafe for DescriptorSelectorNode<S>
impl<S> Send for DescriptorSelectorNode<S>
impl<S> !Sync for DescriptorSelectorNode<S>
impl<S> Unpin for DescriptorSelectorNode<S>
impl<S> UnsafeUnpin for DescriptorSelectorNode<S>
impl<S> !UnwindSafe for DescriptorSelectorNode<S>
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> 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