pub struct UpdatePlace {
Show 21 fields pub version: u64, pub title: String, pub description: String, pub lat: f64, pub lng: f64, pub street: Option<String>, pub zip: Option<String>, pub city: Option<String>, pub country: Option<String>, pub state: Option<String>, pub contact_name: Option<String>, pub email: Option<String>, pub telephone: Option<String>, pub homepage: Option<String>, pub opening_hours: Option<String>, pub founded_on: Option<Date>, pub categories: Vec<String>, pub tags: Vec<String>, pub image_url: Option<String>, pub image_link_url: Option<String>, pub links: Vec<CustomLink>,
}

Fields

version: u64title: Stringdescription: Stringlat: f64lng: f64street: Option<String>zip: Option<String>city: Option<String>country: Option<String>state: Option<String>contact_name: Option<String>email: Option<String>telephone: Option<String>homepage: Option<String>opening_hours: Option<String>founded_on: Option<Date>categories: Vec<String>tags: Vec<String>image_url: Option<String>image_link_url: Option<String>links: Vec<CustomLink>

Trait Implementations

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.