You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: node-graph/nodes/gstd/src/platform_application_io.rs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ use canvas_utils::{Canvas, CanvasHandle};
6
6
use core_types::WasmNotSend;
7
7
#[cfg(target_family = "wasm")]
8
8
use core_types::math::bbox::Bbox;
9
-
use core_types::table::Table;
9
+
use core_types::table::{Table,TableRow};
10
10
#[cfg(target_family = "wasm")]
11
11
use core_types::transform::Footprint;
12
12
use core_types::{Color,Ctx};
@@ -85,14 +85,15 @@ async fn post_request(
85
85
#[name("URL")]
86
86
url:String,
87
87
/// The binary data to include in the body of the POST request.
88
-
body:Vec<u8>,
88
+
body:Table<u8>,
89
89
/// Makes the request run in the background without waiting on a response. This is useful for triggering webhooks without blocking the continued execution of the graph.
/// Converts extracted raw RGBA pixel data from an input image. Each pixel becomes 4 sequential bytes. Useful for transmission over HTTP or writing to files.
122
123
#[node_macro::node(category("Web Request"), name("Image to Bytes"))]
0 commit comments