Struct http_types::other::SourceMap
source · pub struct SourceMap { /* private fields */ }
Expand description
Links to a file that maps transformed source to the original source.
Specifications
Examples
use http_types::{Response, Url};
use http_types::other::SourceMap;
let source_map = SourceMap::new(Url::parse("https://example.net/")?);
let mut res = Response::new(200);
source_map.apply(&mut res);
let base_url = Url::parse("https://example.net/")?;
let source_map = SourceMap::from_headers(base_url, res)?.unwrap();
assert_eq!(source_map.location(), &Url::parse("https://example.net/")?);
Implementations§
source§impl SourceMap
impl SourceMap
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SourceMap
impl Send for SourceMap
impl Sync for SourceMap
impl Unpin for SourceMap
impl UnwindSafe for SourceMap
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