Struct webkit2gtk::GeolocationPosition
source · [−]#[repr(transparent)]pub struct GeolocationPosition { /* private fields */ }
Available on crate feature
v2_26
only.Expand description
An opaque struct to provide position updates to a GeolocationManager
.
WebKitGeolocationPosition is an opaque struct used to provide position updates to a
GeolocationManager
using GeolocationManagerExt::update_position()
.
Implementations
sourceimpl GeolocationPosition
impl GeolocationPosition
pub fn as_ptr(&self) -> *mut WebKitGeolocationPosition
sourceimpl GeolocationPosition
impl GeolocationPosition
sourcepub fn new(latitude: f64, longitude: f64, accuracy: f64) -> GeolocationPosition
pub fn new(latitude: f64, longitude: f64, accuracy: f64) -> GeolocationPosition
Create a new GeolocationPosition
.
latitude
a valid latitude in degrees
longitude
a valid longitude in degrees
accuracy
accuracy of location in meters
Returns
a newly created GeolocationPosition
sourcepub fn set_altitude(&mut self, altitude: f64)
pub fn set_altitude(&mut self, altitude: f64)
sourcepub fn set_altitude_accuracy(&mut self, altitude_accuracy: f64)
pub fn set_altitude_accuracy(&mut self, altitude_accuracy: f64)
sourcepub fn set_heading(&mut self, heading: f64)
pub fn set_heading(&mut self, heading: f64)
Set the self
heading.
Set the self
heading, as a positive angle between the direction of movement and the North
direction, in clockwise direction.
heading
heading in degrees
sourcepub fn set_timestamp(&mut self, timestamp: u64)
pub fn set_timestamp(&mut self, timestamp: u64)
Set the self
timestamp.
By default it’s the time when the self
was created.
timestamp
timestamp in seconds since the epoch, or 0 to use current time
Trait Implementations
sourceimpl Clone for GeolocationPosition
impl Clone for GeolocationPosition
sourceimpl Debug for GeolocationPosition
impl Debug for GeolocationPosition
sourceimpl Hash for GeolocationPosition
impl Hash for GeolocationPosition
sourceimpl Ord for GeolocationPosition
impl Ord for GeolocationPosition
sourcefn cmp(&self, other: &GeolocationPosition) -> Ordering
fn cmp(&self, other: &GeolocationPosition) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<GeolocationPosition> for GeolocationPosition
impl PartialEq<GeolocationPosition> for GeolocationPosition
sourcefn eq(&self, other: &GeolocationPosition) -> bool
fn eq(&self, other: &GeolocationPosition) -> bool
sourceimpl PartialOrd<GeolocationPosition> for GeolocationPosition
impl PartialOrd<GeolocationPosition> for GeolocationPosition
sourcefn partial_cmp(&self, other: &GeolocationPosition) -> Option<Ordering>
fn partial_cmp(&self, other: &GeolocationPosition) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moresourceimpl StaticType for GeolocationPosition
impl StaticType for GeolocationPosition
sourcefn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Eq for GeolocationPosition
impl StructuralEq for GeolocationPosition
impl StructuralPartialEq for GeolocationPosition
Auto Trait Implementations
impl RefUnwindSafe for GeolocationPosition
impl !Send for GeolocationPosition
impl !Sync for GeolocationPosition
impl Unpin for GeolocationPosition
impl UnwindSafe for GeolocationPosition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
sourcefn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.