pub enum SegmentType {
Static,
Constrained {
regex: Box<ConstrainedSegmentRegex>,
},
Dynamic,
Glob,
}
Expand description
Indicates the type of segment which is being represented by this Node.
Variants§
Static
Is matched exactly (string equality) to the segment for incoming request paths.
Unlike all other SegmentTypes
, values determined to be associated with this segment
within a Request
path are not stored within State
.
Constrained
Fields
§
regex: Box<ConstrainedSegmentRegex>
Regex used to match against a single segment of a request path.
Uses the supplied regex to determine match against incoming request paths.
Dynamic
Matches any corresponding segment for incoming request paths.
Glob
Matches multiple path segments until the end of the request path or until a child segment of the above defined types is found.
Trait Implementations§
source§impl Clone for SegmentType
impl Clone for SegmentType
source§fn clone(&self) -> SegmentType
fn clone(&self) -> SegmentType
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 Ord for SegmentType
impl Ord for SegmentType
source§fn cmp(&self, other: &SegmentType) -> Ordering
fn cmp(&self, other: &SegmentType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<SegmentType> for SegmentType
impl PartialEq<SegmentType> for SegmentType
source§fn eq(&self, other: &SegmentType) -> bool
fn eq(&self, other: &SegmentType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SegmentType> for SegmentType
impl PartialOrd<SegmentType> for SegmentType
source§fn partial_cmp(&self, other: &SegmentType) -> Option<Ordering>
fn partial_cmp(&self, other: &SegmentType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more