pub struct Location {
pub info: Option<String>,
pub info_format: Option<String>,
pub oem: Option<Oem>,
pub placement: Option<Placement>,
pub postal_address: Option<PostalAddress>,
}
Expand description
The location of a resource.
Fields§
§info: Option<String>
The location of the resource.
info_format: Option<String>
The format of the Info property.
oem: Option<Oem>
§placement: Option<Placement>
§postal_address: Option<PostalAddress>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Location
impl<'de> Deserialize<'de> for Location
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more