pub struct HeaderSection<S = String> {
pub records: Vec<HeaderRecord<S>>,
}Expand description
The generic HEADER; ... ENDSEC; section.
Fields§
§records: Vec<HeaderRecord<S>>Records in source order, including unknown extension records.
Implementations§
Source§impl<S: AsRef<str>> HeaderSection<S>
impl<S: AsRef<str>> HeaderSection<S>
Sourcepub fn standard(&self) -> StandardHeader
pub fn standard(&self) -> StandardHeader
Projects the three standard header records into named fields.
Examples found in repository?
examples/recovery_probe.rs (line 39)
3fn main() {
4 let path = std::env::args().nth(1).expect("path");
5 let bytes = std::fs::read(&path).expect("read");
6
7 match openbim_step::parse(&bytes) {
8 Ok(_) => println!("strict: OK (unexpected)"),
9 Err(error) => println!("strict: {error}"),
10 }
11
12 let outcome = openbim_step::parse_with(&bytes, openbim_step::ParseOptions::lenient())
13 .expect("lenient parse");
14 println!(
15 "lenient: {} records, {} diagnostics",
16 outcome.exchange.data.records.len(),
17 outcome.diagnostics.len()
18 );
19 for diagnostic in &outcome.diagnostics {
20 println!(" {diagnostic}");
21 let span = diagnostic.span();
22 println!(
23 " dropped bytes: {:?}",
24 String::from_utf8_lossy(&bytes[span.start..span.end])
25 );
26 }
27 let boundaries = outcome
28 .exchange
29 .data
30 .records
31 .iter()
32 .filter(|record| {
33 record
34 .as_simple()
35 .is_some_and(|simple| simple.name == "IFCRELSPACEBOUNDARY")
36 })
37 .count();
38 println!("IfcRelSpaceBoundary: {boundaries}");
39 println!("schema: {:?}", outcome.exchange.header.standard().schema);
40}Trait Implementations§
Source§impl<S: Clone> Clone for HeaderSection<S>
impl<S: Clone> Clone for HeaderSection<S>
Source§fn clone(&self) -> HeaderSection<S>
fn clone(&self) -> HeaderSection<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<S: Debug> Debug for HeaderSection<S>
impl<S: Debug> Debug for HeaderSection<S>
Source§impl<S: Default> Default for HeaderSection<S>
impl<S: Default> Default for HeaderSection<S>
Source§fn default() -> HeaderSection<S>
fn default() -> HeaderSection<S>
Returns the “default value” for a type. Read more
Source§impl<S: PartialEq> PartialEq for HeaderSection<S>
impl<S: PartialEq> PartialEq for HeaderSection<S>
impl<S: PartialEq> StructuralPartialEq for HeaderSection<S>
Auto Trait Implementations§
impl<S> Freeze for HeaderSection<S>
impl<S> RefUnwindSafe for HeaderSection<S>
impl<S> Send for HeaderSection<S>
impl<S> Sync for HeaderSection<S>
impl<S> Unpin for HeaderSection<S>
impl<S> UnsafeUnpin for HeaderSection<S>
impl<S> UnwindSafe for HeaderSection<S>
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