diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-01-24 15:10:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 15:10:49 -0500 |
commit | 5e32c5ea448563be91017d71bab060c8a6bd90fe (patch) | |
tree | aa9e731b9f4b9f6bc28beab23e7575d43bc14653 /cli/ops/fetch.rs | |
parent | 86726f88f1b6fd168fbd5b0d7e01b027cfc268ac (diff) |
s/PinnedBuf/ZeroCopyBuf (#3782)
Diffstat (limited to 'cli/ops/fetch.rs')
-rw-r--r-- | cli/ops/fetch.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/fetch.rs b/cli/ops/fetch.rs index e084fdeff..ba7f7a949 100644 --- a/cli/ops/fetch.rs +++ b/cli/ops/fetch.rs @@ -26,7 +26,7 @@ struct FetchArgs { pub fn op_fetch( state: &ThreadSafeState, args: Value, - data: Option<PinnedBuf>, + data: Option<ZeroCopyBuf>, ) -> Result<JsonOp, ErrBox> { let args: FetchArgs = serde_json::from_value(args)?; let url = args.url; |