pub struct ReviewReviewDiffCommentInput {
pub revision_id: Uuid,
pub parent_id: Option<Uuid>,
pub body: String,
pub file_path: Option<String>,
pub line_number_start: Option<i32>,
pub line_number_end: Option<i32>,
pub start_character: Option<i32>,
pub end_character: Option<i32>,
pub side: Option<String>,
}Fields§
§revision_id: Uuid§parent_id: Option<Uuid>§body: String§file_path: Option<String>§line_number_start: Option<i32>§line_number_end: Option<i32>§start_character: Option<i32>§end_character: Option<i32>§side: Option<String>Trait Implementations§
Source§impl Debug for ReviewReviewDiffCommentInput
impl Debug for ReviewReviewDiffCommentInput
Source§impl<'de> Deserialize<'de> for ReviewReviewDiffCommentInput
impl<'de> Deserialize<'de> for ReviewReviewDiffCommentInput
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
Auto Trait Implementations§
impl Freeze for ReviewReviewDiffCommentInput
impl RefUnwindSafe for ReviewReviewDiffCommentInput
impl Send for ReviewReviewDiffCommentInput
impl Sync for ReviewReviewDiffCommentInput
impl Unpin for ReviewReviewDiffCommentInput
impl UnsafeUnpin for ReviewReviewDiffCommentInput
impl UnwindSafe for ReviewReviewDiffCommentInput
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