pub struct ApiPullFile {
pub filename: Option<String>,
pub additions: Option<i64>,
pub deletions: Option<i64>,
pub status: Option<String>,
pub blob_url: Option<String>,
pub contents_url: Option<String>,
pub patch: Option<String>,
pub sha: Option<String>,
pub raw_url: Option<String>,
}Expand description
ApiPullFile 模型
Fields§
§filename: Option<String>§additions: Option<i64>§deletions: Option<i64>§status: Option<String>§blob_url: Option<String>§contents_url: Option<String>§patch: Option<String>§sha: Option<String>§raw_url: Option<String>Trait Implementations§
Source§impl Clone for ApiPullFile
impl Clone for ApiPullFile
Source§fn clone(&self) -> ApiPullFile
fn clone(&self) -> ApiPullFile
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 ApiPullFile
impl Debug for ApiPullFile
Source§impl<'de> Deserialize<'de> for ApiPullFile
impl<'de> Deserialize<'de> for ApiPullFile
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 ApiPullFile
impl RefUnwindSafe for ApiPullFile
impl Send for ApiPullFile
impl Sync for ApiPullFile
impl Unpin for ApiPullFile
impl UnsafeUnpin for ApiPullFile
impl UnwindSafe for ApiPullFile
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