pub struct ContextBundle {Show 15 fields
pub bundle_type: String,
pub query: Option<String>,
pub scope: BundleScope,
pub summary_policy: String,
pub artifact_policy: String,
pub failures: Vec<BundleEntry>,
pub unresolved_blockers: Vec<BundleEntry>,
pub recent_decisions: Vec<BundleEntry>,
pub commands_already_run: Vec<CommandEntry>,
pub files_inspected_or_touched: Vec<FileEntry>,
pub stale_warnings: Vec<BundleStaleWarning>,
pub artifact_pointers: Vec<ArtifactPointer>,
pub relevant_context: Vec<BundleEntry>,
pub metrics: ContextBundleMetrics,
pub markdown: String,
}Fields§
§bundle_type: String§query: Option<String>§scope: BundleScope§summary_policy: String§artifact_policy: String§failures: Vec<BundleEntry>§unresolved_blockers: Vec<BundleEntry>§recent_decisions: Vec<BundleEntry>§commands_already_run: Vec<CommandEntry>§files_inspected_or_touched: Vec<FileEntry>§stale_warnings: Vec<BundleStaleWarning>§artifact_pointers: Vec<ArtifactPointer>§relevant_context: Vec<BundleEntry>§metrics: ContextBundleMetrics§markdown: StringTrait Implementations§
Source§impl Clone for ContextBundle
impl Clone for ContextBundle
Source§fn clone(&self) -> ContextBundle
fn clone(&self) -> ContextBundle
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 ContextBundle
impl Debug for ContextBundle
Auto Trait Implementations§
impl Freeze for ContextBundle
impl RefUnwindSafe for ContextBundle
impl Send for ContextBundle
impl Sync for ContextBundle
impl Unpin for ContextBundle
impl UnsafeUnpin for ContextBundle
impl UnwindSafe for ContextBundle
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreCreates a shared type from an unshared type.