pub struct PlaceType {
pub code: u32,
pub name: String,
}Expand description
The code and related name to specify the kind of location.
Fields§
§code: u32The code of the location type
name: StringThe name of the location type
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlaceType
impl<'de> Deserialize<'de> for PlaceType
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
Auto Trait Implementations§
impl Freeze for PlaceType
impl RefUnwindSafe for PlaceType
impl Send for PlaceType
impl Sync for PlaceType
impl Unpin for PlaceType
impl UnwindSafe for PlaceType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more