[][src]Struct swc_neuron::SwcSample

pub struct SwcSample<S: StructureIdentifier> {
    pub sample_id: usize,
    pub structure: S,
    pub x: f64,
    pub y: f64,
    pub z: f64,
    pub radius: f64,
    pub parent_id: Option<usize>,
}

Fields

sample_id: usizestructure: Sx: f64y: f64z: f64radius: f64parent_id: Option<usize>

Trait Implementations

impl<S: Clone + StructureIdentifier> Clone for SwcSample<S>[src]

impl<S: Copy + StructureIdentifier> Copy for SwcSample<S>[src]

impl<S: Debug + StructureIdentifier> Debug for SwcSample<S>[src]

impl<S: StructureIdentifier, H: Header> FromIterator<SwcSample<S>> for SwcNeuron<S, H>[src]

impl<S: StructureIdentifier> FromStr for SwcSample<S>[src]

type Err = SampleParseError

The associated error which can be returned from parsing.

impl<S: StructureIdentifier> ToString for SwcSample<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for SwcSample<S> where
    S: RefUnwindSafe

impl<S> Send for SwcSample<S> where
    S: Send

impl<S> Sync for SwcSample<S> where
    S: Sync

impl<S> Unpin for SwcSample<S> where
    S: Unpin

impl<S> UnwindSafe for SwcSample<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.