pub struct Path<T, U, V>(pub T, pub Either<U, V>);
Expand description
Stores a path sub-type with either [T] U
(left) or [T] [V] ...
(right).
Tuple Fields§
§0: T
§1: Either<U, V>
Trait Implementations§
Auto Trait Implementations§
impl<T, U, V> Freeze for Path<T, U, V>
impl<T, U, V> RefUnwindSafe for Path<T, U, V>
impl<T, U, V> Send for Path<T, U, V>
impl<T, U, V> Sync for Path<T, U, V>
impl<T, U, V> Unpin for Path<T, U, V>
impl<T, U, V> UnwindSafe for Path<T, U, V>
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