pub fixes

This commit is contained in:
Mr-Andersen 2019-09-12 16:51:24 +03:00
parent cc19034bca
commit 7de6f9f252
2 changed files with 3 additions and 7 deletions

View file

@ -1,8 +1,6 @@
use serde::Deserialization;
#[derive(Debug, Deserialization, Clone)]
#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
/// This object represents a phone contact.
struct Contact {
pub struct Contact {
/// Contact's phone number
pub phone_number: String,
/// Contact's first name

View file

@ -1,8 +1,6 @@
use serde::{Deserialization, Serialization};
#[derive(Debug, Serialization, Deserialization, Clone)]
/// This object represents a point on the map.
struct Location {
pub struct Location {
/// Longitude as defined by sender
pub longitude: f64,
/// Latitude as defined by sender