pub struct MultiFrameSelectionResult {
pub selection: String,
pub frames: Vec<FrameSelectionSlice>,
}Expand description
Multi-frame chemfiles selection: evaluate the same string on each frame.
Fields§
§selection: StringSelection string evaluated on every frame.
frames: Vec<FrameSelectionSlice>Per-frame slices (same length as the input frame list).
Implementations§
Trait Implementations§
Source§impl Clone for MultiFrameSelectionResult
impl Clone for MultiFrameSelectionResult
Source§fn clone(&self) -> MultiFrameSelectionResult
fn clone(&self) -> MultiFrameSelectionResult
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 moreAuto Trait Implementations§
impl Freeze for MultiFrameSelectionResult
impl RefUnwindSafe for MultiFrameSelectionResult
impl Send for MultiFrameSelectionResult
impl Sync for MultiFrameSelectionResult
impl Unpin for MultiFrameSelectionResult
impl UnsafeUnpin for MultiFrameSelectionResult
impl UnwindSafe for MultiFrameSelectionResult
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