pub struct FeatureProperties {Show 15 fields
pub 筆id: String,
pub 精度区分: Option<String>,
pub 大字コード: String,
pub 丁目コード: String,
pub 小字コード: String,
pub 予備コード: String,
pub 大字名: Option<String>,
pub 丁目名: Option<String>,
pub 小字名: Option<String>,
pub 予備名: Option<String>,
pub 地番: String,
pub 座標値種別: Option<String>,
pub 筆界未定構成筆: Vec<筆界未定構成筆>,
pub 代表点緯度: f64,
pub 代表点経度: f64,
}Fields§
§筆id: String§精度区分: Option<String>§大字コード: String§丁目コード: String§小字コード: String§予備コード: String§大字名: Option<String>§丁目名: Option<String>§小字名: Option<String>§予備名: Option<String>§地番: String§座標値種別: Option<String>§筆界未定構成筆: Vec<筆界未定構成筆>§代表点緯度: f64§代表点経度: f64Trait Implementations§
Source§impl Clone for FeatureProperties
impl Clone for FeatureProperties
Source§fn clone(&self) -> FeatureProperties
fn clone(&self) -> FeatureProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FeatureProperties
impl Debug for FeatureProperties
Source§impl Default for FeatureProperties
impl Default for FeatureProperties
Source§fn default() -> FeatureProperties
fn default() -> FeatureProperties
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FeatureProperties
impl RefUnwindSafe for FeatureProperties
impl Send for FeatureProperties
impl Sync for FeatureProperties
impl Unpin for FeatureProperties
impl UnwindSafe for FeatureProperties
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more