pub struct ProgramExecutorResult {
pub wire_value: WireValue,
pub type_info: Option<TypeInfo>,
pub execution_type: ExecutionType,
pub content_json: Option<Value>,
pub content_html: Option<String>,
pub content_terminal: Option<String>,
}Expand description
Result from ProgramExecutor::execute_program
Fields§
§wire_value: WireValue§type_info: Option<TypeInfo>§execution_type: ExecutionType§content_json: Option<Value>§content_html: Option<String>§content_terminal: Option<String>Auto Trait Implementations§
impl Freeze for ProgramExecutorResult
impl RefUnwindSafe for ProgramExecutorResult
impl Send for ProgramExecutorResult
impl Sync for ProgramExecutorResult
impl Unpin for ProgramExecutorResult
impl UnsafeUnpin for ProgramExecutorResult
impl UnwindSafe for ProgramExecutorResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more