pub struct ConvertReport {
pub n_frames: usize,
pub n_atoms_last: usize,
pub native_con: bool,
}Expand description
Outcome of a successful convert.
Fields§
§n_frames: usizeNumber of frames written.
n_atoms_last: usizeAtom count of the last frame (0 if no frames — should not happen on success).
native_con: boolTrue when the input was treated as native CON/convel (no chemfiles).
Trait Implementations§
Source§impl Clone for ConvertReport
impl Clone for ConvertReport
Source§fn clone(&self) -> ConvertReport
fn clone(&self) -> ConvertReport
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 Debug for ConvertReport
impl Debug for ConvertReport
impl Eq for ConvertReport
Source§impl PartialEq for ConvertReport
impl PartialEq for ConvertReport
impl StructuralPartialEq for ConvertReport
Auto Trait Implementations§
impl Freeze for ConvertReport
impl RefUnwindSafe for ConvertReport
impl Send for ConvertReport
impl Sync for ConvertReport
impl Unpin for ConvertReport
impl UnsafeUnpin for ConvertReport
impl UnwindSafe for ConvertReport
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