pub struct HashLine {
pub line_num: u32,
pub hash: LineHash,
pub content: String,
}Expand description
A single annotated line.
Fields§
§line_num: u32§hash: LineHash§content: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for HashLine
impl<'de> Deserialize<'de> for HashLine
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 HashLine
impl RefUnwindSafe for HashLine
impl Send for HashLine
impl Sync for HashLine
impl Unpin for HashLine
impl UnsafeUnpin for HashLine
impl UnwindSafe for HashLine
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