Enum organelle::probe::ConstraintData [] [src]

pub enum ConstraintData {
    One {
        variant: String,
        soma: Uuid,
    },
    Variadic {
        variant: String,
        somas: Vec<Uuid>,
    },
}

data associated with a synapse constraint

Variants

only one synapse of the given variant

Fields of One

the enum variant for the synapse

the other soma involved in the synapse

any number of synapses of the given variant

Fields of Variadic

the enum variant for the synapse

the other somas involved in the synapses

Trait Implementations

impl Debug for ConstraintData
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ConstraintData
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ConstraintData
[src]

impl PartialEq for ConstraintData
[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 ConstraintData

impl Sync for ConstraintData