From d9d4a5d73c28741deaa2c93d87672ce117315fbf Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 9 Apr 2021 11:27:27 +1000 Subject: feat(lsp): add registry import auto-complete (#9934) --- op_crates/file/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'op_crates/file/lib.rs') diff --git a/op_crates/file/lib.rs b/op_crates/file/lib.rs index 4cfe4eed4..e8c2cde1d 100644 --- a/op_crates/file/lib.rs +++ b/op_crates/file/lib.rs @@ -12,7 +12,7 @@ use std::sync::Arc; use std::sync::Mutex; use uuid::Uuid; -#[derive(Clone)] +#[derive(Debug, Clone)] pub struct Blob { pub data: Vec, pub media_type: String, @@ -20,7 +20,7 @@ pub struct Blob { pub struct Location(pub Url); -#[derive(Default, Clone)] +#[derive(Debug, Default, Clone)] pub struct BlobUrlStore(Arc>>); impl BlobUrlStore { -- cgit v1.2.3