pub struct WebDiffLine {
pub right_line_number: Option<i64>,
pub left_line_number: Option<i64>,
pub prefix: Option<String>,
pub content: Option<String>,
pub type: Option<String>,
}
Expand description
WebDiffLine 模型
Fields§
§right_line_number: Option<i64>
§left_line_number: Option<i64>
§prefix: Option<String>
§content: Option<String>
§type: Option<String>
Trait Implementations§
Source§impl Clone for WebDiffLine
impl Clone for WebDiffLine
Source§fn clone(&self) -> WebDiffLine
fn clone(&self) -> WebDiffLine
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 WebDiffLine
impl Debug for WebDiffLine
Source§impl<'de> Deserialize<'de> for WebDiffLine
impl<'de> Deserialize<'de> for WebDiffLine
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 WebDiffLine
impl RefUnwindSafe for WebDiffLine
impl Send for WebDiffLine
impl Sync for WebDiffLine
impl Unpin for WebDiffLine
impl UnwindSafe for WebDiffLine
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