pub struct ModelMetadata {
pub schema_version: String,
pub originating_system: Option<String>,
pub preprocessor_version: Option<String>,
pub file_name: Option<String>,
pub file_description: Option<String>,
pub author: Option<String>,
pub organization: Option<String>,
pub timestamp: Option<String>,
}Expand description
Model metadata extracted from IFC header
Fields§
§schema_version: StringIFC schema version (e.g., “IFC2X3”, “IFC4”, “IFC4X3”)
originating_system: Option<String>Originating system (CAD application)
preprocessor_version: Option<String>Preprocessor version
file_name: Option<String>File name from header
file_description: Option<String>File description
Author
organization: Option<String>Organization
timestamp: Option<String>Timestamp
Trait Implementations§
Source§impl Clone for ModelMetadata
impl Clone for ModelMetadata
Source§fn clone(&self) -> ModelMetadata
fn clone(&self) -> ModelMetadata
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 ModelMetadata
impl Debug for ModelMetadata
Source§impl Default for ModelMetadata
impl Default for ModelMetadata
Source§fn default() -> ModelMetadata
fn default() -> ModelMetadata
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ModelMetadata
impl RefUnwindSafe for ModelMetadata
impl Send for ModelMetadata
impl Sync for ModelMetadata
impl Unpin for ModelMetadata
impl UnsafeUnpin for ModelMetadata
impl UnwindSafe for ModelMetadata
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