A better Rust ATProto crate
99
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: correct Frame GAT parameter in wasm32 stream method

+5 -6
+5 -6
crates/jacquard-common/src/xrpc.rs
··· 414 414 415 415 /// Stream an XRPC procedure call and its response 416 416 #[cfg(target_arch = "wasm32")] 417 - fn stream<S>( 417 + fn stream<S, B>( 418 418 &self, 419 - stream: XrpcProcedureSend<S::Frame<'static>>, 419 + stream: XrpcProcedureSend<S::Frame<B>>, 420 420 ) -> impl Future< 421 421 Output = Result< 422 - XrpcResponseStream< 423 - <<S as XrpcProcedureStream>::Response as XrpcStreamResp>::Frame<'static>, 424 - >, 422 + XrpcResponseStream<<<S as XrpcProcedureStream>::Response as XrpcStreamResp>::Frame<B>>, 425 423 StreamError, 426 424 >, 427 425 > 428 426 where 427 + B: BosStr + 'static, 429 428 S: XrpcProcedureStream + 'static, 430 - <<S as XrpcProcedureStream>::Response as XrpcStreamResp>::Frame<'static>: XrpcStreamResp; 429 + <<S as XrpcProcedureStream>::Response as XrpcStreamResp>::Frame<B>: XrpcStreamResp; 431 430 } 432 431 433 432 /// Stateless XRPC call builder.