[][src]Struct nature_db::RelationSettings

pub struct RelationSettings {
    pub selector: Option<FlowSelector>,
    pub executor: Option<Vec<Executor>>,
    pub use_upstream_id: bool,
    pub target_states: Option<TargetState>,
    pub delay: i32,
}

Fields

selector: Option<FlowSelector>executor: Option<Vec<Executor>>use_upstream_id: bool

if the downstream is state meta, when is_main is set to true, the upstream's id will be used as downstream's id

target_states: Option<TargetState>delay: i32

Trait Implementations

impl Clone for RelationSettings[src]

impl Debug for RelationSettings[src]

impl Default for RelationSettings[src]

impl<'de> Deserialize<'de> for RelationSettings[src]

impl PartialEq<RelationSettings> for RelationSettings[src]

impl Serialize for RelationSettings[src]

impl StructuralPartialEq for RelationSettings[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> IntoSql for 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.

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