pub struct CompilerOutput {
pub worker_invoke_calls: Option<WorkerFunctionsInRib>,
pub byte_code: RibByteCode,
pub rib_input_type_info: RibInputTypeInfo,
pub rib_output_type_info: Option<RibOutputTypeInfo>,
}Fields§
§worker_invoke_calls: Option<WorkerFunctionsInRib>§byte_code: RibByteCode§rib_input_type_info: RibInputTypeInfo§rib_output_type_info: Option<RibOutputTypeInfo>Trait Implementations§
Source§impl Clone for CompilerOutput
impl Clone for CompilerOutput
Source§fn clone(&self) -> CompilerOutput
fn clone(&self) -> CompilerOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompilerOutput
impl RefUnwindSafe for CompilerOutput
impl Send for CompilerOutput
impl Sync for CompilerOutput
impl Unpin for CompilerOutput
impl UnsafeUnpin for CompilerOutput
impl UnwindSafe for CompilerOutput
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