pub struct And<P1, P2>{ /* private fields */ }Trait Implementations§
Source§impl<P1, P2> Matcher for And<P1, P2>
impl<P1, P2> Matcher for And<P1, P2>
Source§fn match_node_with_env<'tree, D>(
&self,
node: Node<'tree, D>,
env: &mut Cow<'_, MetaVarEnv<'tree, D>>,
) -> Option<Node<'tree, D>>where
D: Doc,
fn match_node_with_env<'tree, D>(
&self,
node: Node<'tree, D>,
env: &mut Cow<'_, MetaVarEnv<'tree, D>>,
) -> Option<Node<'tree, D>>where
D: Doc,
Attempt to match a node, updating the meta-variable environment. Read more
Auto Trait Implementations§
impl<P1, P2> Freeze for And<P1, P2>
impl<P1, P2> RefUnwindSafe for And<P1, P2>where
P1: RefUnwindSafe,
P2: RefUnwindSafe,
impl<P1, P2> Send for And<P1, P2>
impl<P1, P2> Sync for And<P1, P2>
impl<P1, P2> Unpin for And<P1, P2>
impl<P1, P2> UnsafeUnpin for And<P1, P2>where
P1: UnsafeUnpin,
P2: UnsafeUnpin,
impl<P1, P2> UnwindSafe for And<P1, P2>where
P1: UnwindSafe,
P2: UnwindSafe,
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