Skip to main content

RouteMetrics

Struct RouteMetrics 

Source
pub struct RouteMetrics {
Show 17 fields pub shape: RouteShape, pub distance_m: f64, pub ascent_m: f64, pub descent_m: f64, pub lower_limb_load_km: f64, pub moving_time_s: f64, pub quality: f64, pub sustained_steep_m: f64, pub grade_distribution: GradeDistribution, pub road_fraction: f64, pub low_confidence_fraction: f64, pub elevation_fraction: f64, pub restricted_access_fraction: f64, pub repeated_edge_fraction: f64, pub crossings: BTreeMap<CrossingKind, u32>, pub access_m: BTreeMap<Access, f64>, pub terrain_m: BTreeMap<Terrain, f64>,
}

Fields§

§shape: RouteShape§distance_m: f64§ascent_m: f64§descent_m: f64§lower_limb_load_km: f64§moving_time_s: f64§quality: f64

Length-normalized desirability in 0–100. Physical load and moving time are deliberately absent: a severe route may still be an excellent one.

§sustained_steep_m: f64§grade_distribution: GradeDistribution§road_fraction: f64§low_confidence_fraction: f64§elevation_fraction: f64§restricted_access_fraction: f64§repeated_edge_fraction: f64§crossings: BTreeMap<CrossingKind, u32>§access_m: BTreeMap<Access, f64>§terrain_m: BTreeMap<Terrain, f64>

Implementations§

Source§

impl RouteMetrics

Source

pub fn measure(graph: &WalkGraph, start: VertexId, edges: &[EdgeId]) -> Self

Source

pub fn terrain_percentages(&self) -> BTreeMap<Terrain, f64>

Source

pub fn access_percentages(&self) -> BTreeMap<Access, f64>

Trait Implementations§

Source§

impl Clone for RouteMetrics

Source§

fn clone(&self) -> RouteMetrics

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RouteMetrics

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RouteMetrics

Source§

fn default() -> RouteMetrics

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for RouteMetrics

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for RouteMetrics

Source§

fn eq(&self, other: &RouteMetrics) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for RouteMetrics

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for RouteMetrics

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.