mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Stubs for fetch module
This commit is contained in:
parent
4da88f0ecc
commit
c80b8af8cc
3 changed files with 14 additions and 0 deletions
5
src/components/net/fetch/request.rs
Normal file
5
src/components/net/fetch/request.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
pub struct Request;
|
5
src/components/net/fetch/response.rs
Normal file
5
src/components/net/fetch/response.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
pub struct Response;
|
|
@ -39,3 +39,7 @@ pub mod image_cache_task;
|
||||||
pub mod local_image_cache;
|
pub mod local_image_cache;
|
||||||
pub mod resource_task;
|
pub mod resource_task;
|
||||||
|
|
||||||
|
pub mod fetch {
|
||||||
|
pub mod request;
|
||||||
|
pub mod response;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue