pub struct CodeownersErrorsErrorsInner {
pub line: i32,
pub column: i32,
pub source: Option<String>,
pub kind: String,
pub suggestion: Option<Option<String>>,
pub message: String,
pub path: String,
}
Fields§
§line: i32
The line number where this errors occurs.
column: i32
The column number where this errors occurs.
source: Option<String>
The contents of the line where the error occurs.
kind: String
The type of error.
suggestion: Option<Option<String>>
Suggested action to fix the error. This will usually be null
, but is provided for some common errors.
message: String
A human-readable description of the error, combining information from multiple fields, laid out for display in a monospaced typeface (for example, a command-line setting).
path: String
The path of the file where the error occured.
Implementations§
Trait Implementations§
Source§impl Clone for CodeownersErrorsErrorsInner
impl Clone for CodeownersErrorsErrorsInner
Source§fn clone(&self) -> CodeownersErrorsErrorsInner
fn clone(&self) -> CodeownersErrorsErrorsInner
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 CodeownersErrorsErrorsInner
impl Debug for CodeownersErrorsErrorsInner
Source§impl Default for CodeownersErrorsErrorsInner
impl Default for CodeownersErrorsErrorsInner
Source§fn default() -> CodeownersErrorsErrorsInner
fn default() -> CodeownersErrorsErrorsInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeownersErrorsErrorsInner
impl<'de> Deserialize<'de> for CodeownersErrorsErrorsInner
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CodeownersErrorsErrorsInner
Auto Trait Implementations§
impl Freeze for CodeownersErrorsErrorsInner
impl RefUnwindSafe for CodeownersErrorsErrorsInner
impl Send for CodeownersErrorsErrorsInner
impl Sync for CodeownersErrorsErrorsInner
impl Unpin for CodeownersErrorsErrorsInner
impl UnwindSafe for CodeownersErrorsErrorsInner
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