pub struct Interpretation {
pub input: InterpretationInput,
pub events: Arc<CanonicalEventStream>,
pub status: InterpretationStatus,
pub completion: InterpretationCompletion,
}Expand description
Handle returned by the factory.
Fields§
§input: InterpretationInputFeed raw bytes here.
events: Arc<CanonicalEventStream>Canonical event stream.
status: InterpretationStatusStatus snapshot.
completion: InterpretationCompletionCompletes with InterpretationEnd.
Auto Trait Implementations§
impl !Freeze for Interpretation
impl !RefUnwindSafe for Interpretation
impl !UnwindSafe for Interpretation
impl Send for Interpretation
impl Sync for Interpretation
impl Unpin for Interpretation
impl UnsafeUnpin for Interpretation
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