pub struct TestRange {
pub start_line: u32,
pub start_character: u32,
pub end_line: u32,
pub end_character: u32,
}Expand description
Source location range for a test item
Fields§
§start_line: u32Zero-based starting line number
start_character: u32Zero-based starting character offset within the line
end_line: u32Zero-based ending line number
end_character: u32Zero-based ending character offset within the line
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestRange
impl RefUnwindSafe for TestRange
impl Send for TestRange
impl Sync for TestRange
impl Unpin for TestRange
impl UnsafeUnpin for TestRange
impl UnwindSafe for TestRange
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