pub struct ApiPullReviewCommentCreationForm {
pub start_line: Option<i64>,
pub start_side: Option<String>,
pub subject_type: Option<String>,
pub end_side: Option<String>,
pub body: Option<String>,
pub end_line: Option<i64>,
pub path: Option<String>,
}
Expand description
ApiPullReviewCommentCreationForm 模型
Fields§
§start_line: Option<i64>
§start_side: Option<String>
§subject_type: Option<String>
§end_side: Option<String>
§body: Option<String>
§end_line: Option<i64>
§path: Option<String>
Trait Implementations§
Source§impl Clone for ApiPullReviewCommentCreationForm
impl Clone for ApiPullReviewCommentCreationForm
Source§fn clone(&self) -> ApiPullReviewCommentCreationForm
fn clone(&self) -> ApiPullReviewCommentCreationForm
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<'de> Deserialize<'de> for ApiPullReviewCommentCreationForm
impl<'de> Deserialize<'de> for ApiPullReviewCommentCreationForm
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 ApiPullReviewCommentCreationForm
impl RefUnwindSafe for ApiPullReviewCommentCreationForm
impl Send for ApiPullReviewCommentCreationForm
impl Sync for ApiPullReviewCommentCreationForm
impl Unpin for ApiPullReviewCommentCreationForm
impl UnwindSafe for ApiPullReviewCommentCreationForm
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