pub struct LineAnalysis {
pub line_number: usize,
pub content: String,
pub node_type: AstNodeType,
pub is_arid: bool,
pub reason: String,
}Expand description
Analysis of a single line
Fields§
§line_number: usize§content: String§node_type: AstNodeType§is_arid: bool§reason: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LineAnalysis
impl RefUnwindSafe for LineAnalysis
impl Send for LineAnalysis
impl Sync for LineAnalysis
impl Unpin for LineAnalysis
impl UnsafeUnpin for LineAnalysis
impl UnwindSafe for LineAnalysis
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