Enum organelle::probe::SomaData [] [src]

pub enum SomaData {
    Organelle {
        nucleus: Box<SomaData>,
        somas: Vec<SomaData>,
        uuid: Uuid,
        name: String,
    },
    Axon {
        terminals: Vec<ConstraintData>,
        dendrites: Vec<ConstraintData>,
        uuid: Uuid,
        name: String,
    },
    Soma {
        synapse: SynapseData,
        name: String,
    },
}

data associated with a soma, organelle, or axon

Variants

data associated with an organelle

Fields of Organelle

the soma at the center of an organelle

the rest of the somas contained in the organelle

unique id of the organelle

name of the organelle

data associated with the axon of a soma

Fields of Axon

data associated with the terminals for this soma

data associated with the dendrites for this soma

unique id of the axon

name of the axon

data associated with a custom soma

Fields of Soma

the type of synapse used by this soma

the name of the soma

Trait Implementations

impl Debug for SomaData
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SomaData
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for SomaData
[src]

impl PartialEq for SomaData
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for SomaData

impl Sync for SomaData