pub struct WebapiCreatePullRequestForm {
pub assignees: Option<Vec<String>>,
pub title: Option<String>,
pub reviewers: Option<Vec<String>>,
pub head_repo_slug: Option<String>,
pub base_branch: Option<String>,
pub labels: Option<Vec<String>>,
pub body: Option<String>,
pub head_branch: Option<String>,
}
Expand description
WebapiCreatePullRequestForm 模型
Fields§
§assignees: Option<Vec<String>>
§title: Option<String>
§reviewers: Option<Vec<String>>
§head_repo_slug: Option<String>
§base_branch: Option<String>
§labels: Option<Vec<String>>
§body: Option<String>
§head_branch: Option<String>
Trait Implementations§
Source§impl Clone for WebapiCreatePullRequestForm
impl Clone for WebapiCreatePullRequestForm
Source§fn clone(&self) -> WebapiCreatePullRequestForm
fn clone(&self) -> WebapiCreatePullRequestForm
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 WebapiCreatePullRequestForm
impl Debug for WebapiCreatePullRequestForm
Source§impl<'de> Deserialize<'de> for WebapiCreatePullRequestForm
impl<'de> Deserialize<'de> for WebapiCreatePullRequestForm
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 WebapiCreatePullRequestForm
impl RefUnwindSafe for WebapiCreatePullRequestForm
impl Send for WebapiCreatePullRequestForm
impl Sync for WebapiCreatePullRequestForm
impl Unpin for WebapiCreatePullRequestForm
impl UnwindSafe for WebapiCreatePullRequestForm
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