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