pub struct IsochroneOptions {
pub time_intervals: Vec<f64>,
pub smooth: bool,
pub smoothing_factor: f64,
pub polygon_method: IsochronePolygonMethod,
}Expand description
Options for isochrone calculation
Fields§
§time_intervals: Vec<f64>Time intervals in seconds
smooth: boolWhether to smooth the isochrone polygons
smoothing_factor: f64Smoothing factor (0.0 - 1.0)
polygon_method: IsochronePolygonMethodMethod for polygon generation
Trait Implementations§
Source§impl Clone for IsochroneOptions
impl Clone for IsochroneOptions
Source§fn clone(&self) -> IsochroneOptions
fn clone(&self) -> IsochroneOptions
Returns a duplicate 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 Debug for IsochroneOptions
impl Debug for IsochroneOptions
Auto Trait Implementations§
impl Freeze for IsochroneOptions
impl RefUnwindSafe for IsochroneOptions
impl Send for IsochroneOptions
impl Sync for IsochroneOptions
impl Unpin for IsochroneOptions
impl UnsafeUnpin for IsochroneOptions
impl UnwindSafe for IsochroneOptions
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