//! # Geo value
//!
//! The decoded geographic-position value kind.
//!
//! Backs the `GEO` property (RFC 6350 6.5.2) in vCard 2.1 (a `,`-separated
//! pair) and 3.0 (a `;`-separated pair); vCard 4.0 carries `GEO` as a `geo:`
//! URI instead, decoded to [`VcardUri`](crate::value::uri::VcardUri). The
//! latitude and longitude are kept as raw text.
use Cow;
/// A decoded `GEO` value: a latitude/longitude pair, kept as raw text.