pub struct WebDiff {
pub head_commit: Option<String>,
pub file_limit: Option<i64>,
pub stat: Option<Value>,
pub base_commit: Option<String>,
pub file_exceeded: Option<bool>,
pub files: Option<Vec<Value>>,
}
Expand description
WebDiff 模型
Fields§
§head_commit: Option<String>
§file_limit: Option<i64>
§stat: Option<Value>
§base_commit: Option<String>
§file_exceeded: Option<bool>
§files: Option<Vec<Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WebDiff
impl<'de> Deserialize<'de> for WebDiff
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 WebDiff
impl RefUnwindSafe for WebDiff
impl Send for WebDiff
impl Sync for WebDiff
impl Unpin for WebDiff
impl UnwindSafe for WebDiff
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