Struct serde_with::json::JsonString

source ·
pub struct JsonString<T = Same>(/* private fields */);
Available on crate feature json only.
Expand description

Serialize value as string containing JSON

Note: This type is not necessary for normal usage of serde with JSON. It is only required if the serialized format contains a string, which itself contains JSON.

§Errors

Serialization can fail if T’s implementation of Serialize decides to fail, or if T contains a map with non-string keys.

§Examples

#[serde_as]
#[derive(Deserialize, Serialize)]
struct A {
    #[serde_as(as = "JsonString")]
    other_struct: B,
}
#[derive(Deserialize, Serialize)]
struct B {
    value: usize,
}

let v: A = serde_json::from_str(r#"{"other_struct":"{\"value\":5}"}"#).unwrap();
assert_eq!(5, v.other_struct.value);

let x = A {
    other_struct: B { value: 10 },
};
assert_eq!(
    r#"{"other_struct":"{\"value\":10}"}"#,
    serde_json::to_string(&x).unwrap()
);

The JsonString converter takes a type argument, which allows altering the serialization behavior of the inner value, before it gets turned into a JSON string.

#[serde_as]
#[derive(Debug, Serialize, Deserialize, PartialEq)]
struct Struct {
    #[serde_as(as = "JsonString<Vec<(JsonString, _)>>")]
    value: BTreeMap<[u8; 2], u32>,
}

let value = Struct {
    value: BTreeMap::from([([1, 2], 3), ([4, 5], 6)]),
};
assert_eq!(
    r#"{"value":"[[\"[1,2]\",3],[\"[4,5]\",6]]"}"#,
    serde_json::to_string(&value).unwrap()
);

Trait Implementations§

source§

impl<'de, T, TAs> DeserializeAs<'de, T> for JsonString<TAs>
where TAs: for<'a> DeserializeAs<'a, T>,

source§

fn deserialize_as<D>(deserializer: D) -> Result<T, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer.
source§

impl<T, TAs> SerializeAs<T> for JsonString<TAs>
where TAs: SerializeAs<T>,

source§

fn serialize_as<S>(source: &T, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer.

Auto Trait Implementations§

§

impl<T> Freeze for JsonString<T>

§

impl<T> RefUnwindSafe for JsonString<T>
where T: RefUnwindSafe,

§

impl<T> Send for JsonString<T>
where T: Send,

§

impl<T> Sync for JsonString<T>
where T: Sync,

§

impl<T> Unpin for JsonString<T>
where T: Unpin,

§

impl<T> UnwindSafe for JsonString<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.