pub struct SuggestionReviewView {Show 18 fields
pub model: String,
pub field: String,
pub industry: String,
pub confidence_label: String,
pub confidence_class: String,
pub apply_url: String,
pub can_apply: bool,
pub step_descriptions: Vec<String>,
pub schema_diff_html: String,
pub explanation: String,
pub risk_label: String,
pub risk_class: String,
pub adds_fields: u32,
pub destructive: bool,
pub validation_ok: bool,
pub validation_message: Option<String>,
pub warnings: Vec<String>,
pub error: Option<String>,
}Fields§
§model: String§field: String§industry: String§confidence_label: String§confidence_class: String§apply_url: String§can_apply: bool§step_descriptions: Vec<String>§schema_diff_html: String§explanation: String§risk_label: String§risk_class: String§adds_fields: u32§destructive: bool§validation_ok: bool§validation_message: Option<String>§warnings: Vec<String>§error: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SuggestionReviewView
impl RefUnwindSafe for SuggestionReviewView
impl Send for SuggestionReviewView
impl Sync for SuggestionReviewView
impl Unpin for SuggestionReviewView
impl UnsafeUnpin for SuggestionReviewView
impl UnwindSafe for SuggestionReviewView
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> 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 more