pub struct CheckAnnotation {
pub path: String,
pub start_line: i32,
pub end_line: i32,
pub start_column: Option<i32>,
pub end_column: Option<i32>,
pub annotation_level: Option<String>,
pub title: Option<String>,
pub message: Option<String>,
pub raw_details: Option<String>,
pub blob_href: String,
}
Expand description
CheckAnnotation : Check Annotation
Fields§
§path: String
§start_line: i32
§end_line: i32
§start_column: Option<i32>
§end_column: Option<i32>
§annotation_level: Option<String>
§title: Option<String>
§message: Option<String>
§raw_details: Option<String>
§blob_href: String
Implementations§
Trait Implementations§
Source§impl Clone for CheckAnnotation
impl Clone for CheckAnnotation
Source§fn clone(&self) -> CheckAnnotation
fn clone(&self) -> CheckAnnotation
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 CheckAnnotation
impl Debug for CheckAnnotation
Source§impl Default for CheckAnnotation
impl Default for CheckAnnotation
Source§fn default() -> CheckAnnotation
fn default() -> CheckAnnotation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckAnnotation
impl<'de> Deserialize<'de> for CheckAnnotation
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
Source§impl PartialEq for CheckAnnotation
impl PartialEq for CheckAnnotation
Source§impl Serialize for CheckAnnotation
impl Serialize for CheckAnnotation
impl StructuralPartialEq for CheckAnnotation
Auto Trait Implementations§
impl Freeze for CheckAnnotation
impl RefUnwindSafe for CheckAnnotation
impl Send for CheckAnnotation
impl Sync for CheckAnnotation
impl Unpin for CheckAnnotation
impl UnwindSafe for CheckAnnotation
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