pub struct CadastralAddress {
pub meta: Bo4eMeta,
pub gemarkung_flur: Option<String>,
pub flurstueck: Option<String>,
}Expand description
Address based on cadastral/land registry information.
Used for addressing via real estate/property information.
German: Katasteradresse
§Example
use bo4e_core::com::CadastralAddress;
let cadastral = CadastralAddress {
gemarkung_flur: Some("Flur 4".to_string()),
flurstueck: Some("123/45".to_string()),
..Default::default()
};Fields§
§meta: Bo4eMetaBO4E metadata
gemarkung_flur: Option<String>Cadastral district and parcel (Gemarkung/Flur)
flurstueck: Option<String>Plot/parcel number (Flurstück)
Trait Implementations§
Source§impl Bo4eObject for CadastralAddress
impl Bo4eObject for CadastralAddress
Source§fn type_name_german() -> &'static str
fn type_name_german() -> &'static str
Returns the German type name as used in the
_typ field. Read moreSource§fn type_name_english() -> &'static str
fn type_name_english() -> &'static str
Returns the English type name. Read more
Source§impl Clone for CadastralAddress
impl Clone for CadastralAddress
Source§fn clone(&self) -> CadastralAddress
fn clone(&self) -> CadastralAddress
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 CadastralAddress
impl Debug for CadastralAddress
Source§impl Default for CadastralAddress
impl Default for CadastralAddress
Source§fn default() -> CadastralAddress
fn default() -> CadastralAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CadastralAddress
impl<'de> Deserialize<'de> for CadastralAddress
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
Source§impl PartialEq for CadastralAddress
impl PartialEq for CadastralAddress
Source§impl Serialize for CadastralAddress
impl Serialize for CadastralAddress
impl StructuralPartialEq for CadastralAddress
Auto Trait Implementations§
impl Freeze for CadastralAddress
impl RefUnwindSafe for CadastralAddress
impl Send for CadastralAddress
impl Sync for CadastralAddress
impl Unpin for CadastralAddress
impl UnwindSafe for CadastralAddress
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