pub trait GeoCircleTrait {
    // Required methods
    fn get_geo_midpoint(&self) -> &[GeoMidpointProperty];
    fn take_geo_midpoint(&mut self) -> Vec<GeoMidpointProperty>;
    fn get_geo_radius(&self) -> &[GeoRadiusProperty];
    fn take_geo_radius(&mut self) -> Vec<GeoRadiusProperty>;
}
Expand description

This trait is for properties from https://schema.org/GeoCircle.

Required Methods§

Implementors§