pub struct CityObjectTableOwned {Show 19 fields
pub ids: Vec<CityObjectId>,
pub external_id_symbols: Vec<SymbolId>,
pub object_type_symbols: Vec<SymbolId>,
pub parent_start: Vec<u32>,
pub parent_len: Vec<u32>,
pub parents: Vec<CityObjectId>,
pub child_start: Vec<u32>,
pub child_len: Vec<u32>,
pub children: Vec<CityObjectId>,
pub geometry_start: Vec<u32>,
pub geometry_len: Vec<u32>,
pub geometries: Vec<GeometryId>,
pub attribute_root: Vec<Option<AttributeNodeId>>,
pub bbox_min_x: Vec<Option<f64>>,
pub bbox_min_y: Vec<Option<f64>>,
pub bbox_min_z: Vec<Option<f64>>,
pub bbox_max_x: Vec<Option<f64>>,
pub bbox_max_y: Vec<Option<f64>>,
pub bbox_max_z: Vec<Option<f64>>,
}Fields§
§ids: Vec<CityObjectId>§external_id_symbols: Vec<SymbolId>§object_type_symbols: Vec<SymbolId>§parent_start: Vec<u32>§parent_len: Vec<u32>§parents: Vec<CityObjectId>§child_start: Vec<u32>§child_len: Vec<u32>§children: Vec<CityObjectId>§geometry_start: Vec<u32>§geometry_len: Vec<u32>§geometries: Vec<GeometryId>§attribute_root: Vec<Option<AttributeNodeId>>§bbox_min_x: Vec<Option<f64>>§bbox_min_y: Vec<Option<f64>>§bbox_min_z: Vec<Option<f64>>§bbox_max_x: Vec<Option<f64>>§bbox_max_y: Vec<Option<f64>>§bbox_max_z: Vec<Option<f64>>Implementations§
Trait Implementations§
Source§impl Clone for CityObjectTableOwned
impl Clone for CityObjectTableOwned
Source§fn clone(&self) -> CityObjectTableOwned
fn clone(&self) -> CityObjectTableOwned
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 CityObjectTableOwned
impl Debug for CityObjectTableOwned
Source§impl Default for CityObjectTableOwned
impl Default for CityObjectTableOwned
Source§fn default() -> CityObjectTableOwned
fn default() -> CityObjectTableOwned
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CityObjectTableOwned
impl RefUnwindSafe for CityObjectTableOwned
impl Send for CityObjectTableOwned
impl Sync for CityObjectTableOwned
impl Unpin for CityObjectTableOwned
impl UnsafeUnpin for CityObjectTableOwned
impl UnwindSafe for CityObjectTableOwned
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