pub struct MolProps {
pub atoms: Vec<AtomProps>,
pub bonds: Vec<BondProps>,
}Expand description
一个分子的全部查询性质,按原子/键下标索引。
Fields§
§atoms: Vec<AtomProps>逐原子
bonds: Vec<BondProps>逐键。配位键的朝向留给匹配时按方向决定,这里 dative_forward 恒为真。
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MolProps
impl RefUnwindSafe for MolProps
impl Send for MolProps
impl Sync for MolProps
impl Unpin for MolProps
impl UnsafeUnpin for MolProps
impl UnwindSafe for MolProps
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