pub enum SwcLine<S: StructureIdentifier> {
Comment(String),
Sample(SwcSample<S>),
}
Expand description
Line in a SWC file, which might be a comment or sample.
Variants§
Auto Trait Implementations§
impl<S> Freeze for SwcLine<S>where
S: Freeze,
impl<S> RefUnwindSafe for SwcLine<S>where
S: RefUnwindSafe,
impl<S> Send for SwcLine<S>where
S: Send,
impl<S> Sync for SwcLine<S>where
S: Sync,
impl<S> Unpin for SwcLine<S>where
S: Unpin,
impl<S> UnwindSafe for SwcLine<S>where
S: UnwindSafe,
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