pub struct ApiCommitObject {
pub message: Option<String>,
pub comment_count: Option<i64>,
pub committer: Option<Value>,
pub tree: Option<Value>,
pub verification: Option<Value>,
pub author: Option<Value>,
}
Expand description
ApiCommitObject 模型
Fields§
§message: Option<String>
§comment_count: Option<i64>
§committer: Option<Value>
§tree: Option<Value>
§verification: Option<Value>
Trait Implementations§
Source§impl Clone for ApiCommitObject
impl Clone for ApiCommitObject
Source§fn clone(&self) -> ApiCommitObject
fn clone(&self) -> ApiCommitObject
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 ApiCommitObject
impl Debug for ApiCommitObject
Source§impl<'de> Deserialize<'de> for ApiCommitObject
impl<'de> Deserialize<'de> for ApiCommitObject
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 ApiCommitObject
impl RefUnwindSafe for ApiCommitObject
impl Send for ApiCommitObject
impl Sync for ApiCommitObject
impl Unpin for ApiCommitObject
impl UnwindSafe for ApiCommitObject
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