aboutsummaryrefslogtreecommitdiffstats
path: root/components/net_traits/storage_thread.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2017-01-03 14:31:48 +0100
committerMs2ger <Ms2ger@gmail.com>2017-01-03 15:06:41 +0100
commitb46846e2a01ad38e7c8c4cf0099dfd94d74faa6d (patch)
tree1ced9540a504e856a7de5d6bf3809a3e230ec6e2 /components/net_traits/storage_thread.rs
parentb76613a3891e6edccf32ceefa922f6c745f6ee8a (diff)
downloadservo-b46846e2a01ad38e7c8c4cf0099dfd94d74faa6d.tar.gz
servo-b46846e2a01ad38e7c8c4cf0099dfd94d74faa6d.zip
Rustfmt net_traits.
Diffstat (limited to 'components/net_traits/storage_thread.rs')
-rw-r--r--components/net_traits/storage_thread.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net_traits/storage_thread.rs b/components/net_traits/storage_thread.rs
index e4fec8729f1..b56ed2e3181 100644
--- a/components/net_traits/storage_thread.rs
+++ b/components/net_traits/storage_thread.rs
@@ -8,7 +8,7 @@ use servo_url::ServoUrl;
#[derive(Copy, Clone, Deserialize, Serialize, HeapSizeOf)]
pub enum StorageType {
Session,
- Local
+ Local,
}
/// Request operations on the storage data associated with a particular url
@@ -36,5 +36,5 @@ pub enum StorageThreadMsg {
Clear(IpcSender<bool>, ServoUrl, StorageType),
/// send a reply when done cleaning up thread resources and then shut it down
- Exit(IpcSender<()>)
+ Exit(IpcSender<()>),
}