[][src]Enum flowrlib::runtime::Response

pub enum Response {
    Ack,
    Stdin(String),
    Line(String),
    Args(Vec<String>),
    Error(String),
    GetStdinEOF,
    GetLineEOF,
    ClientExiting,
    ClientSubmission(Submission),
    EnterDebugger,
    Invalid,
}

A Response from the runtime_client to the run-time

Variants

Ack

Simple acknowledgement

Stdin(String)

A String read from Stdin

Line(String)

A line of text read from Stdin using readline

Args(Vec<String>)

A Vector of Strings that are the flow's arguments

Error(String)

An Error occurred in the runtime_client

GetStdinEOF

EOF was detected on input reading using Stdin

GetLineEOF

EOF was detected on input reading Stdin using Readline

ClientExiting

Client is exiting Event loop

ClientSubmission(Submission)

A submission from the client for execution

EnterDebugger

Client requests that server enters the ddebugger at the next opportunity

Invalid

Invalid - used when deserialization goes wrong

Trait Implementations

impl Debug for Response[src]

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

impl From<Message> for Response[src]

impl PartialEq<Response> for Response[src]

impl Send for Response[src]

impl Serialize for Response[src]

impl StructuralPartialEq for Response[src]

impl Sync for Response[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> Pointable for T

type Init = T

The type for initializers.

impl<T> Sendable for T where
    T: Into<Message>, 
[src]

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.