Skip to main content

DataRecord

Struct DataRecord 

Source
pub struct DataRecord<S = String> {
    pub id: InstanceId,
    pub records: Vec<Record<S>>,
}
Expand description

A simple or complex #id=...; instance in DATA;.

Fields§

§id: InstanceId

Source instance id.

§records: Vec<Record<S>>

One record for a simple instance, multiple for a complex instance.

Implementations§

Source§

impl<S> DataRecord<S>

Source

pub fn simple(id: InstanceId, name: S, parameters: Vec<Parameter<S>>) -> Self

Creates a simple instance containing one named record.

Source

pub fn as_simple(&self) -> Option<&Record<S>>

Returns the sole record of a simple instance.

Examples found in repository?
examples/recovery_probe.rs (line 34)
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 DataRecord<S>

Source§

fn clone(&self) -> DataRecord<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 DataRecord<S>

Source§

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

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

impl<S: PartialEq> PartialEq for DataRecord<S>

Source§

fn eq(&self, other: &DataRecord<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 DataRecord<S>

Auto Trait Implementations§

§

impl<S> Freeze for DataRecord<S>
where Vec<Record<S>>: Freeze,

§

impl<S> RefUnwindSafe for DataRecord<S>

§

impl<S> Send for DataRecord<S>
where Vec<Record<S>>: Send,

§

impl<S> Sync for DataRecord<S>
where Vec<Record<S>>: Sync,

§

impl<S> Unpin for DataRecord<S>
where Vec<Record<S>>: Unpin,

§

impl<S> UnsafeUnpin for DataRecord<S>
where Vec<Record<S>>: UnsafeUnpin,

§

impl<S> UnwindSafe for DataRecord<S>
where Vec<Record<S>>: UnwindSafe,

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.