pub struct ScanSectionInfo {
pub id: String,
pub group: String,
pub variant: Option<String>,
pub file: String,
pub start_line: usize,
pub end_line: Option<usize>,
pub description: Option<String>,
pub state: String,
}Expand description
Information about a discovered toggle section for scan output.
Fields§
§id: String§group: String§variant: Option<String>§file: String§start_line: usize§end_line: Option<usize>§description: Option<String>§state: StringTrait Implementations§
Source§impl Clone for ScanSectionInfo
impl Clone for ScanSectionInfo
Source§fn clone(&self) -> ScanSectionInfo
fn clone(&self) -> ScanSectionInfo
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 ScanSectionInfo
impl Debug for ScanSectionInfo
Auto Trait Implementations§
impl Freeze for ScanSectionInfo
impl RefUnwindSafe for ScanSectionInfo
impl Send for ScanSectionInfo
impl Sync for ScanSectionInfo
impl Unpin for ScanSectionInfo
impl UnsafeUnpin for ScanSectionInfo
impl UnwindSafe for ScanSectionInfo
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