pub struct ApiPullCreationForm {
pub base: Option<String>,
pub head_repo: Option<String>,
pub title: Option<String>,
pub head: Option<String>,
pub body: Option<String>,
}
Expand description
ApiPullCreationForm 模型
Fields§
§base: Option<String>
§head_repo: Option<String>
§title: Option<String>
§head: Option<String>
§body: Option<String>
Trait Implementations§
Source§impl Clone for ApiPullCreationForm
impl Clone for ApiPullCreationForm
Source§fn clone(&self) -> ApiPullCreationForm
fn clone(&self) -> ApiPullCreationForm
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 ApiPullCreationForm
impl Debug for ApiPullCreationForm
Source§impl<'de> Deserialize<'de> for ApiPullCreationForm
impl<'de> Deserialize<'de> for ApiPullCreationForm
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 ApiPullCreationForm
impl RefUnwindSafe for ApiPullCreationForm
impl Send for ApiPullCreationForm
impl Sync for ApiPullCreationForm
impl Unpin for ApiPullCreationForm
impl UnwindSafe for ApiPullCreationForm
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