mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Rustfmt net_traits crate
This commit is contained in:
parent
f512e262a5
commit
d41be1d56d
10 changed files with 229 additions and 131 deletions
|
@ -27,7 +27,13 @@ pub enum StorageThreadMsg {
|
|||
GetItem(IpcSender<Option<String>>, ServoUrl, StorageType, String),
|
||||
|
||||
/// sets the value of the given key in the associated storage data
|
||||
SetItem(IpcSender<Result<(bool, Option<String>), ()>>, ServoUrl, StorageType, String, String),
|
||||
SetItem(
|
||||
IpcSender<Result<(bool, Option<String>), ()>>,
|
||||
ServoUrl,
|
||||
StorageType,
|
||||
String,
|
||||
String,
|
||||
),
|
||||
|
||||
/// removes the key/value pair for the given key in the associated storage data
|
||||
RemoveItem(IpcSender<Option<String>>, ServoUrl, StorageType, String),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue