pub struct WebComparedRawDiff {
pub diff: Option<String>,
pub straight: Option<bool>,
pub base_commit: Option<String>,
pub head_commit: Option<String>,
pub merge_base_commit: Option<String>,
}
Expand description
WebComparedRawDiff 模型
Fields§
§diff: Option<String>
§straight: Option<bool>
§base_commit: Option<String>
§head_commit: Option<String>
§merge_base_commit: Option<String>
Trait Implementations§
Source§impl Clone for WebComparedRawDiff
impl Clone for WebComparedRawDiff
Source§fn clone(&self) -> WebComparedRawDiff
fn clone(&self) -> WebComparedRawDiff
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 WebComparedRawDiff
impl Debug for WebComparedRawDiff
Source§impl<'de> Deserialize<'de> for WebComparedRawDiff
impl<'de> Deserialize<'de> for WebComparedRawDiff
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 WebComparedRawDiff
impl RefUnwindSafe for WebComparedRawDiff
impl Send for WebComparedRawDiff
impl Sync for WebComparedRawDiff
impl Unpin for WebComparedRawDiff
impl UnwindSafe for WebComparedRawDiff
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