Skip to main content

Location

Struct Location 

Source
pub struct Location { /* private fields */ }
Expand description

A geographic location with coordinates and metadata.

All fields are private to allow future API evolution without breaking changes. Use the accessor methods to retrieve location data.

Implementations§

Source§

impl Location

Source

pub const fn new( latitude: Latitude, longitude: Longitude, timestamp: Timestamp, ) -> Location

Creates a new Location with validated coordinates.

§Arguments
  • latitude - Latitude in degrees (-90 to 90).
  • longitude - Longitude in degrees (-180 to 180).
  • timestamp - When this location was recorded
Source

pub fn from_degrees( latitude: f64, longitude: f64, timestamp: Timestamp, ) -> Result<Location, LocationError>

Creates a new Location from raw coordinate degrees.

§Errors

Returns LocationError::InvalidCoordinate if either coordinate is NaN or outside its valid range.

Source

pub async fn get() -> Result<Location, LocationError>

Returns the current device location.

Precondition: callers must ensure Permission::Location is granted; this function does not trigger the runtime prompt. Use waterkit_permission::request(Permission::Location) first.

§Errors

Returns LocationError::PermissionDenied when access is denied, LocationError::ServiceDisabled when location services are off, LocationError::Timeout when the request times out, LocationError::InvalidCoordinate when the OS returns invalid coordinates, or LocationError::Platform for other OS failures.

Source

pub const fn with_altitude(self, altitude: f64) -> Location

Sets the altitude in meters above sea level.

with_* prefix is preserved here because Location also has getters with bare field names (altitude() returns the current value); the workspace-wide naming rule is “bare method name = setter unless a getter already takes that name.”

Source

pub const fn with_horizontal_accuracy(self, accuracy: f64) -> Location

Sets the horizontal accuracy in meters.

Source

pub const fn with_vertical_accuracy(self, accuracy: f64) -> Location

Sets the vertical accuracy in meters.

Source

pub const fn latitude(&self) -> Latitude

Returns the latitude in degrees (-90 to 90).

Source

pub const fn longitude(&self) -> Longitude

Returns the longitude in degrees (-180 to 180).

Source

pub const fn altitude(&self) -> Option<f64>

Returns the altitude in meters above sea level, if available.

Source

pub const fn horizontal_accuracy(&self) -> Option<f64>

Returns the horizontal accuracy in meters, if available.

Lower values indicate more precise location data.

Source

pub const fn vertical_accuracy(&self) -> Option<f64>

Returns the vertical accuracy in meters, if available.

Lower values indicate more precise altitude data.

Source

pub const fn timestamp(&self) -> Timestamp

Returns the timestamp when this location was recorded.

Trait Implementations§

Source§

impl Clone for Location

Source§

fn clone(&self) -> Location

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 Location

Source§

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

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

impl From<&Location> for Coordinate

Source§

fn from(value: &Location) -> Self

Converts to this type from the input type.
Source§

impl From<Location> for Coordinate

Source§

fn from(value: Location) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for Location

Source§

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

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

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Location

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<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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> IdentifiableExt for T

Source§

fn use_id<F, Id>(self, f: F) -> UseId<Self, F>
where F: Fn(&Self) -> Id, Id: Ord + Hash,

Wraps the value in a UseId with the provided identification function.
Source§

fn self_id(self) -> SelfId<Self>

Wraps the value in a SelfId, making the value serve as its own identifier.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> 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 = !

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

fn try_from(value: U) -> Result<T, !>

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more