pub struct ValidationIssueInfo {
pub severity: ValidationSeverity,
pub message: String,
pub line_number: Option<u32>,
}
Expand description
Represents a validation issue with an edit
Fields§
§severity: ValidationSeverity
Severity of the issue
message: String
Description of the issue
line_number: Option<u32>
Line number related to the issue (if applicable)
Trait Implementations§
Source§impl Clone for ValidationIssueInfo
impl Clone for ValidationIssueInfo
Source§fn clone(&self) -> ValidationIssueInfo
fn clone(&self) -> ValidationIssueInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidationIssueInfo
impl Debug for ValidationIssueInfo
Source§impl From<ValidationIssue> for ValidationIssueInfo
impl From<ValidationIssue> for ValidationIssueInfo
Source§fn from(issue: ValidationIssue) -> Self
fn from(issue: ValidationIssue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ValidationIssueInfo
impl RefUnwindSafe for ValidationIssueInfo
impl Send for ValidationIssueInfo
impl Sync for ValidationIssueInfo
impl Unpin for ValidationIssueInfo
impl UnwindSafe for ValidationIssueInfo
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request