Struct reproto_core::RpPathStep
[−]
[src]
pub struct RpPathStep<F: 'static> where
F: Flavor, { pub parts: Vec<RpPathPart<F>>, }
A step in a path specification.
Fields
parts: Vec<RpPathPart<F>>
Trait Implementations
impl<F: Debug + 'static> Debug for RpPathStep<F> where
F: Flavor, [src]
F: Flavor,
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<F: Clone + 'static> Clone for RpPathStep<F> where
F: Flavor, [src]
F: Flavor,
fn clone(&self) -> RpPathStep<F>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<F: PartialEq + 'static> PartialEq for RpPathStep<F> where
F: Flavor, [src]
F: Flavor,
fn eq(&self, __arg_0: &RpPathStep<F>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RpPathStep<F>) -> bool[src]
This method tests for !=.
impl<F: Eq + 'static> Eq for RpPathStep<F> where
F: Flavor, [src]
F: Flavor,
impl<F: 'static, T> Translate<T> for RpPathStep<F> where
F: Flavor,
T: Translator<Source = F>, [src]
F: Flavor,
T: Translator<Source = F>,
type Source = F
type Out = RpPathStep<T::Target>
fn translate(self, translator: &T) -> Result<RpPathStep<T::Target>>[src]
Translate into different flavor.