summaryrefslogtreecommitdiff
path: root/core/plugin_api.rs
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2021-04-30 16:51:54 +0200
committerGitHub <noreply@github.com>2021-04-30 10:51:54 -0400
commitfc9c7de94b08049dd04c4ca6016586cdac0dd2ac (patch)
tree939b1dab406e7ea9e077fed6832806016d879065 /core/plugin_api.rs
parent5ec478b5fa6261e2b2d3c8daed3cba9e780730c7 (diff)
cleanup(core): replace OpResponse with OpResult (#10434)
Drop the Value/Buffer enum since #10432 allows buffers to be serialized rust => v8
Diffstat (limited to 'core/plugin_api.rs')
-rw-r--r--core/plugin_api.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/plugin_api.rs b/core/plugin_api.rs
index d1dda160f..9f37df6f3 100644
--- a/core/plugin_api.rs
+++ b/core/plugin_api.rs
@@ -10,7 +10,7 @@
pub use crate::Op;
pub use crate::OpId;
-pub use crate::OpResponse;
+pub use crate::OpResult;
pub use crate::ZeroCopyBuf;
pub type InitFn = fn(&mut dyn Interface);