Skip to main content

HeaderSection

Struct HeaderSection 

Source
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>

Source

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>

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl<S: Debug> Debug for HeaderSection<S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<S: Default> Default for HeaderSection<S>

Source§

fn default() -> HeaderSection<S>

Returns the “default value” for a type. Read more
Source§

impl<S: PartialEq> PartialEq for HeaderSection<S>

Source§

fn eq(&self, other: &HeaderSection<S>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<S: PartialEq> StructuralPartialEq for HeaderSection<S>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.