pub struct StreamFaultResult {
pub items: Vec<StreamItem>,
pub diagnostics: Vec<Symbol>,
}Expand description
Outcome of applying a StreamFaultPlan to a sequence of items.
Fields§
§items: Vec<StreamItem>Items after the plan’s faults have been applied.
diagnostics: Vec<Symbol>Diagnostic symbols recording each fault that was applied, in order.
Trait Implementations§
Source§impl Clone for StreamFaultResult
impl Clone for StreamFaultResult
Source§fn clone(&self) -> StreamFaultResult
fn clone(&self) -> StreamFaultResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StreamFaultResult
impl Debug for StreamFaultResult
impl Eq for StreamFaultResult
Source§impl PartialEq for StreamFaultResult
impl PartialEq for StreamFaultResult
Source§fn eq(&self, other: &StreamFaultResult) -> bool
fn eq(&self, other: &StreamFaultResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StreamFaultResult
Auto Trait Implementations§
impl Freeze for StreamFaultResult
impl RefUnwindSafe for StreamFaultResult
impl Send for StreamFaultResult
impl Sync for StreamFaultResult
impl Unpin for StreamFaultResult
impl UnsafeUnpin for StreamFaultResult
impl UnwindSafe for StreamFaultResult
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