pub struct RpPathSpec<F>where
F: Flavor + 'static,{
pub steps: Vec<RpPathStep<F>>,
}
Expand description
A path specification.
Fields§
§steps: Vec<RpPathStep<F>>
Implementations§
Trait Implementations§
Source§impl<F> Clone for RpPathSpec<F>
impl<F> Clone for RpPathSpec<F>
Source§fn clone(&self) -> RpPathSpec<F>
fn clone(&self) -> RpPathSpec<F>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<F> Debug for RpPathSpec<F>
impl<F> Debug for RpPathSpec<F>
Source§impl<F> PartialEq for RpPathSpec<F>
impl<F> PartialEq for RpPathSpec<F>
Source§impl<F> Serialize for RpPathSpec<F>
impl<F> Serialize for RpPathSpec<F>
Source§impl<F, T> Translate<T> for RpPathSpec<F>where
F: Flavor + 'static,
T: Translator<Source = F>,
impl<F, T> Translate<T> for RpPathSpec<F>where
F: Flavor + 'static,
T: Translator<Source = F>,
Source§fn translate(
self,
diag: &mut Diagnostics,
translator: &T,
) -> Result<RpPathSpec<T::Target>>
fn translate( self, diag: &mut Diagnostics, translator: &T, ) -> Result<RpPathSpec<T::Target>>
Translate into different flavor.
type Source = F
type Out = RpPathSpec<<T as Translator>::Target>
impl<F> Eq for RpPathSpec<F>
impl<F> StructuralPartialEq for RpPathSpec<F>where
F: Flavor + 'static,
Auto Trait Implementations§
impl<F> Freeze for RpPathSpec<F>
impl<F> RefUnwindSafe for RpPathSpec<F>
impl<F> !Send for RpPathSpec<F>
impl<F> !Sync for RpPathSpec<F>
impl<F> Unpin for RpPathSpec<F>
impl<F> UnwindSafe for RpPathSpec<F>
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