pub struct PipelineRawDump {
pub frames: Vec<RawInputFrame>,
}Expand description
Snapshot of raw input for a pipeline run.
Fields§
§frames: Vec<RawInputFrame>Chunks in the order they were pushed.
Implementations§
Source§impl PipelineRawDump
impl PipelineRawDump
Sourcepub fn format_text(&self) -> String
pub fn format_text(&self) -> String
Human-readable dump of exact chunks.
Sourcepub fn contains_str(&self, needle: &str) -> bool
pub fn contains_str(&self, needle: &str) -> bool
True if any chunk contains the needle.
Trait Implementations§
Source§impl Clone for PipelineRawDump
impl Clone for PipelineRawDump
Source§fn clone(&self) -> PipelineRawDump
fn clone(&self) -> PipelineRawDump
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 PipelineRawDump
impl Debug for PipelineRawDump
Source§impl Default for PipelineRawDump
impl Default for PipelineRawDump
Source§fn default() -> PipelineRawDump
fn default() -> PipelineRawDump
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PipelineRawDump
impl RefUnwindSafe for PipelineRawDump
impl Send for PipelineRawDump
impl Sync for PipelineRawDump
impl Unpin for PipelineRawDump
impl UnsafeUnpin for PipelineRawDump
impl UnwindSafe for PipelineRawDump
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