pub struct UpdateReviewRequestInput {
pub body: Option<String>,
pub title: String,
}Expand description
Input required to keep an existing review request aligned with the latest session commit message.
Fields§
§body: Option<String>Optional body or description submitted with the review request.
title: StringTitle shown in the forge review-request UI.
Trait Implementations§
Source§impl Clone for UpdateReviewRequestInput
impl Clone for UpdateReviewRequestInput
Source§fn clone(&self) -> UpdateReviewRequestInput
fn clone(&self) -> UpdateReviewRequestInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateReviewRequestInput
impl Debug for UpdateReviewRequestInput
impl Eq for UpdateReviewRequestInput
Source§impl PartialEq for UpdateReviewRequestInput
impl PartialEq for UpdateReviewRequestInput
Source§fn eq(&self, other: &UpdateReviewRequestInput) -> bool
fn eq(&self, other: &UpdateReviewRequestInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateReviewRequestInput
Auto Trait Implementations§
impl Freeze for UpdateReviewRequestInput
impl RefUnwindSafe for UpdateReviewRequestInput
impl Send for UpdateReviewRequestInput
impl Sync for UpdateReviewRequestInput
impl Unpin for UpdateReviewRequestInput
impl UnsafeUnpin for UpdateReviewRequestInput
impl UnwindSafe for UpdateReviewRequestInput
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