vcard 0.4.13

A pure Rust implementation of vCard based on RFC 6350.
Documentation
use std::fmt::{Display, Write};

use validators::{Validated, ValidatedWrapper};

use super::{
    super::values::{geo_value::GeoValue, Value},
    *,
};

#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct Geo {
    geo_value: GeoValue,
}

impl Geo {
    pub fn from_geo_value(geo_value: GeoValue) -> Geo {
        Geo {
            geo_value,
        }
    }
}

impl Geo {
    pub fn get_geo_value(&self) -> &GeoValue {
        &self.geo_value
    }
}

impl Parameter for Geo {
    fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
        f.write_str(";GEO=\"")?;

        Value::fmt(&self.geo_value, f)?;

        f.write_char('\"')?;

        Ok(())
    }
}

impl Display for Geo {
    fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
        Parameter::fmt(self, f)
    }
}

impl Validated for Geo {}

impl ValidatedWrapper for Geo {
    type Error = &'static str;

    fn from_string(_from_string_input: String) -> Result<Self, Self::Error> {
        unimplemented!();
    }

    fn from_str(_from_str_input: &str) -> Result<Self, Self::Error> {
        unimplemented!();
    }
}