[][src]Enum openair::Geometry

pub enum Geometry {
    Polygon {
        points: Vec<Coord>,
    },
    Circle {
        centerpoint: Coord,
        radius: f32,
    },
}

Variants

Polygon

Fields of Polygon

points: Vec<Coord>

Points describing the polygon.

The polygon may be open or closed.

Circle

Fields of Circle

centerpoint: Coord

The centerpoint of the circle.

radius: f32

Radius of the circle in nautical miles (1 NM = 1852 m).

Trait Implementations

impl PartialEq<Geometry> for Geometry[src]

impl Display for Geometry[src]

impl Debug for Geometry[src]

Auto Trait Implementations

impl Send for Geometry

impl Sync for Geometry

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.