pub struct GrabbedFile {
pub display_path: String,
pub full_range: Range<usize>,
pub header_range: Option<Range<usize>>,
pub body_range: Range<usize>,
}Fields§
§display_path: String§full_range: Range<usize>§header_range: Option<Range<usize>>§body_range: Range<usize>Trait Implementations§
Source§impl Clone for GrabbedFile
impl Clone for GrabbedFile
Source§fn clone(&self) -> GrabbedFile
fn clone(&self) -> GrabbedFile
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 moreAuto Trait Implementations§
impl Freeze for GrabbedFile
impl RefUnwindSafe for GrabbedFile
impl Send for GrabbedFile
impl Sync for GrabbedFile
impl Unpin for GrabbedFile
impl UnwindSafe for GrabbedFile
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