pub struct FileURL {
pub url: String,
pub filepath: String,
pub bad: bool,
pub line: usize,
pub col: usize,
}
Expand description
URL in a File.
If the URL could not be resolved, the bad
field will be set.
Fields§
§url: String
§filepath: String
§bad: bool
§line: usize
§col: usize
Auto Trait Implementations§
impl Freeze for FileURL
impl RefUnwindSafe for FileURL
impl Send for FileURL
impl Sync for FileURL
impl Unpin for FileURL
impl UnwindSafe for FileURL
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