Explorar el Código

Change to a stream of bytes for liveview to make using sledgehammer later non-breaking

Evan Almloff hace 1 año
padre
commit
ee28c89f5e
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4 4
      packages/liveview/src/pool.rs

+ 4 - 4
packages/liveview/src/pool.rs

@@ -87,16 +87,16 @@ impl LiveViewPool {
 /// }
 /// }
 /// ```
 /// ```
 pub trait LiveViewSocket:
 pub trait LiveViewSocket:
-    SinkExt<String, Error = LiveViewError>
-    + StreamExt<Item = Result<String, LiveViewError>>
+    SinkExt<Vec<u8>, Error = LiveViewError>
+    + StreamExt<Item = Result<Vec<u8>, LiveViewError>>
     + Send
     + Send
     + 'static
     + 'static
 {
 {
 }
 }
 
 
 impl<S> LiveViewSocket for S where
 impl<S> LiveViewSocket for S where
-    S: SinkExt<String, Error = LiveViewError>
-        + StreamExt<Item = Result<String, LiveViewError>>
+    S: SinkExt<Vec<u8>, Error = LiveViewError>
+        + StreamExt<Item = Result<Vec<u8>, LiveViewError>>
         + Send
         + Send
         + 'static
         + 'static
 {
 {