pub struct HeaderWriter<'a> {
pub fbb: FlatBufferBuilder<'a>,
pub cj: CityJSON,
pub header_options: HeaderWriterOptions,
pub attr_schema: AttributeSchema,
pub semantic_attr_schema: Option<AttributeSchema>,
/* private fields */
}Expand description
Writer for converting CityJSON header information to FlatBuffers format
Fields§
§fbb: FlatBufferBuilder<'a>FlatBuffers builder instance
cj: CityJSONSource CityJSON data
header_options: HeaderWriterOptionsConfiguration options for header writing
attr_schema: AttributeSchemaAttribute schema
semantic_attr_schema: Option<AttributeSchema>Semantic attribute schema
Auto Trait Implementations§
impl<'a> Freeze for HeaderWriter<'a>
impl<'a> RefUnwindSafe for HeaderWriter<'a>
impl<'a> Send for HeaderWriter<'a>
impl<'a> Sync for HeaderWriter<'a>
impl<'a> Unpin for HeaderWriter<'a>
impl<'a> UnsafeUnpin for HeaderWriter<'a>
impl<'a> UnwindSafe for HeaderWriter<'a>
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