pub struct RpPathStep<F>where
F: Flavor + 'static,{
pub parts: Vec<RpPathPart<F>>,
}
Expand description
A step in a path specification.
Fields§
§parts: Vec<RpPathPart<F>>
Trait Implementations§
Source§impl<F> Clone for RpPathStep<F>
impl<F> Clone for RpPathStep<F>
Source§fn clone(&self) -> RpPathStep<F>
fn clone(&self) -> RpPathStep<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 RpPathStep<F>
impl<F> Debug for RpPathStep<F>
Source§impl<F> PartialEq for RpPathStep<F>
impl<F> PartialEq for RpPathStep<F>
Source§impl<F> Serialize for RpPathStep<F>
impl<F> Serialize for RpPathStep<F>
Source§impl<F, T> Translate<T> for RpPathStep<F>where
F: Flavor + 'static,
T: Translator<Source = F>,
impl<F, T> Translate<T> for RpPathStep<F>where
F: Flavor + 'static,
T: Translator<Source = F>,
Source§fn translate(
self,
diag: &mut Diagnostics,
translator: &T,
) -> Result<RpPathStep<T::Target>>
fn translate( self, diag: &mut Diagnostics, translator: &T, ) -> Result<RpPathStep<T::Target>>
Translate into different flavor.
type Source = F
type Out = RpPathStep<<T as Translator>::Target>
impl<F> Eq for RpPathStep<F>
impl<F> StructuralPartialEq for RpPathStep<F>where
F: Flavor + 'static,
Auto Trait Implementations§
impl<F> Freeze for RpPathStep<F>
impl<F> RefUnwindSafe for RpPathStep<F>
impl<F> !Send for RpPathStep<F>
impl<F> !Sync for RpPathStep<F>
impl<F> Unpin for RpPathStep<F>
impl<F> UnwindSafe for RpPathStep<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