diff options
author | Mathias Lafeldt <mathias.lafeldt@gmail.com> | 2022-08-21 19:31:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 19:31:14 +0200 |
commit | e96933bc163fd81a276cbc169b17f76724a5ac33 (patch) | |
tree | 9baab891a4035c4a03b490bb81ade8b42c426d9a /serde_v8/serializable.rs | |
parent | fb2aeb79a113e576ff2cc4f1bf3fc30741969508 (diff) |
chore: use Rust 1.63.0 (#15464)
Diffstat (limited to 'serde_v8/serializable.rs')
-rw-r--r-- | serde_v8/serializable.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/serde_v8/serializable.rs b/serde_v8/serializable.rs index abde544c7..7820d02ec 100644 --- a/serde_v8/serializable.rs +++ b/serde_v8/serializable.rs @@ -39,7 +39,7 @@ impl SerializablePkg { &self, scope: &mut v8::HandleScope<'a>, ) -> Result<v8::Local<'a, v8::Value>, crate::Error> { - match &*self { + match self { Self::Primitive(x) => crate::to_v8(scope, x), Self::Serializable(x) => x.to_v8(scope), } |