pub struct ApiPull {
pub is_wip: Option<bool>,
pub body: Option<String>,
pub blocked_on: Option<String>,
pub head: Option<Value>,
pub number: Option<String>,
pub state: Option<String>,
pub title: Option<String>,
pub merged_by: Option<Value>,
pub base: Option<Value>,
}
Expand description
ApiPull 模型
Fields§
§is_wip: Option<bool>
§body: Option<String>
§blocked_on: Option<String>
§head: Option<Value>
§number: Option<String>
§state: Option<String>
§title: Option<String>
§merged_by: Option<Value>
§base: Option<Value>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApiPull
impl<'de> Deserialize<'de> for ApiPull
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 ApiPull
impl RefUnwindSafe for ApiPull
impl Send for ApiPull
impl Sync for ApiPull
impl Unpin for ApiPull
impl UnwindSafe for ApiPull
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