[][src]Struct nature_db::MissionRaw

pub struct MissionRaw {
    pub to: String,
    pub executor: Executor,
    pub filter_before: Vec<Executor>,
    pub filter_after: Vec<Executor>,
    pub target_demand: RelationTarget,
    pub use_upstream_id: bool,
    pub delay: i32,
    pub sys_context: HashMap<String, String>,
    pub id_bridge: bool,
}

Fields

to: Stringexecutor: Executorfilter_before: Vec<Executor>filter_after: Vec<Executor>target_demand: RelationTargetuse_upstream_id: booldelay: i32sys_context: HashMap<String, String>id_bridge: bool

Implementations

impl MissionRaw[src]

pub fn to_json(&self) -> Result<String>[src]

pub fn from_json(json: &str) -> Result<Self>[src]

Trait Implementations

impl Clone for MissionRaw[src]

impl Debug for MissionRaw[src]

impl Default for MissionRaw[src]

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

impl From<Mission> for MissionRaw[src]

impl Serialize for MissionRaw[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,