mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-20 00:00:11 +02:00
Change sse::Event::json_data to use axum_core::Error as its error type (#1762)
This commit is contained in:
+3
-1
@@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
- **breaking:** Change `sse::Event::json_data` to use `axum_core::Error` as its error type ([#1762])
|
||||
|
||||
[#1762]: https://github.com/tokio-rs/axum/pull/1762
|
||||
|
||||
# 0.6.16 (18. April, 2023)
|
||||
|
||||
|
||||
@@ -192,7 +192,6 @@ allowed = [
|
||||
"http_body",
|
||||
"hyper",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"tower_layer",
|
||||
"tower_service",
|
||||
]
|
||||
|
||||
@@ -212,7 +212,7 @@ impl Event {
|
||||
///
|
||||
/// [`MessageEvent`'s data field]: https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent/data
|
||||
#[cfg(feature = "json")]
|
||||
pub fn json_data<T>(mut self, data: T) -> serde_json::Result<Event>
|
||||
pub fn json_data<T>(mut self, data: T) -> Result<Event, axum_core::Error>
|
||||
where
|
||||
T: serde::Serialize,
|
||||
{
|
||||
@@ -221,7 +221,7 @@ impl Event {
|
||||
}
|
||||
|
||||
self.buffer.extend_from_slice(b"data:");
|
||||
serde_json::to_writer((&mut self.buffer).writer(), &data)?;
|
||||
serde_json::to_writer((&mut self.buffer).writer(), &data).map_err(axum_core::Error::new)?;
|
||||
self.buffer.put_u8(b'\n');
|
||||
|
||||
self.flags.insert(EventFlags::HAS_DATA);
|
||||
|
||||
Reference in New Issue
Block a user