Struct widgetry::tools::URLManager
source · [−]pub struct URLManager;
Expand description
Utilities for reflecting the current map and viewport in the URL on the web. No effect on native.
Implementations
sourceimpl URLManager
impl URLManager
sourcepub fn update_url_free_param(free_param: String)
pub fn update_url_free_param(free_param: String)
Modify the current URL to change the first free parameter in the HTTP GET params to the specified value, adding it if needed.
sourcepub fn update_url_param(key: String, value: String)
pub fn update_url_param(key: String, value: String)
Modify the current URL to change the first named parameter in the HTTP GET params to the specified value, adding it if needed.
sourcepub fn get_cam_param(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds) -> String
pub fn get_cam_param(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds) -> String
Get an OSM-style zoom/lat/lon
string
(https://wiki.openstreetmap.org/wiki/Browsing#Other_URL_tricks) based on the current
viewport.
sourcepub fn update_url_cam(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds)
pub fn update_url_cam(ctx: &EventCtx<'_>, gps_bounds: &GPSBounds)
Modify the current URL to set –cam to an OSM-style zoom/lat/lon
string
(https://wiki.openstreetmap.org/wiki/Browsing#Other_URL_tricks) based on the current
viewport.
Auto Trait Implementations
impl RefUnwindSafe for URLManager
impl Send for URLManager
impl Sync for URLManager
impl Unpin for URLManager
impl UnwindSafe for URLManager
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self