[][src]Struct nature_db::Relation

pub struct Relation {
    pub from: String,
    pub to: Meta,
    pub selector: Option<FlowSelector>,
    pub executor: Executor,
    pub filter_before: Vec<Executor>,
    pub filter_after: Vec<Executor>,
    pub use_upstream_id: bool,
    pub target: RelationTarget,
    pub delay: i32,
    pub delay_on_pare: (i32, u8),
    pub id_bridge: bool,
}

Fields

from: Stringto: Metaselector: Option<FlowSelector>executor: Executorfilter_before: Vec<Executor>filter_after: Vec<Executor>use_upstream_id: booltarget: RelationTargetdelay: i32delay_on_pare: (i32, u8)id_bridge: bool

Implementations

impl Relation[src]

pub async fn from_raw<MC, M, '_, '_>(
    val: RawRelation,
    meta_cache_getter: &'_ MC,
    meta_getter: &'_ M
) -> Result<Relation> where
    MC: MetaCache,
    M: MetaDao
[src]

pub fn relation_string(&self) -> String[src]

Trait Implementations

impl Clone for Relation[src]

impl Debug for Relation[src]

impl Default for Relation[src]

impl Iterator for Relation[src]

type Item = Relation

The type of the elements being iterated over.

impl PartialEq<Relation> for Relation[src]

impl StructuralPartialEq for Relation[src]

Auto Trait Implementations

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,