pub trait Record {
// Required methods
fn mat(&self) -> u32;
fn mf(&self) -> u32;
fn mt(&self) -> u32;
fn ns(&self) -> Option<u32>;
}Expand description
Basic structure of an ENDF tape.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".