pub struct ConditionalPath<T, U> {
pub predicate: Box<PathPredicate<T>>,
pub next: U,
}
Fields§
§predicate: Box<PathPredicate<T>>
§next: U
Auto Trait Implementations§
impl<T, U> Freeze for ConditionalPath<T, U>where
U: Freeze,
impl<T, U> !RefUnwindSafe for ConditionalPath<T, U>
impl<T, U> Send for ConditionalPath<T, U>where
U: Send,
impl<T, U> !Sync for ConditionalPath<T, U>
impl<T, U> Unpin for ConditionalPath<T, U>where
U: Unpin,
impl<T, U> !UnwindSafe for ConditionalPath<T, U>
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