pub struct ThreadPreviewReport {Show 16 fields
pub thread: String,
pub thread_mode: String,
pub thread_state: String,
pub freshness: String,
pub task: Option<String>,
pub changed_paths: Vec<String>,
pub changed_path_count: usize,
pub impact_categories: Vec<String>,
pub heavy_impact_paths: Vec<String>,
pub merge_relation: String,
pub conflicts: Vec<String>,
pub conflict_count: usize,
pub blockers: Vec<String>,
pub recommended_action: String,
pub recommended_action_template: Option<ActionTemplate>,
pub thread_health: String,
}Fields§
§thread: String§thread_mode: String§thread_state: String§freshness: String§task: Option<String>§changed_paths: Vec<String>§changed_path_count: usize§impact_categories: Vec<String>§heavy_impact_paths: Vec<String>§merge_relation: String§conflicts: Vec<String>§conflict_count: usize§blockers: Vec<String>§recommended_action: String§recommended_action_template: Option<ActionTemplate>§thread_health: StringImplementations§
Source§impl ThreadPreviewReport
impl ThreadPreviewReport
pub fn refresh_recommended_action_metadata(&mut self)
Trait Implementations§
Source§impl Clone for ThreadPreviewReport
impl Clone for ThreadPreviewReport
Source§fn clone(&self) -> ThreadPreviewReport
fn clone(&self) -> ThreadPreviewReport
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 ThreadPreviewReport
impl Debug for ThreadPreviewReport
Source§impl JsonSchema for ThreadPreviewReport
impl JsonSchema for ThreadPreviewReport
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ThreadPreviewReport
impl RefUnwindSafe for ThreadPreviewReport
impl Send for ThreadPreviewReport
impl Sync for ThreadPreviewReport
impl Unpin for ThreadPreviewReport
impl UnsafeUnpin for ThreadPreviewReport
impl UnwindSafe for ThreadPreviewReport
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