pub struct SerdeValue(/* private fields */);Trait Implementations§
Source§impl Debug for SerdeValue
impl Debug for SerdeValue
Source§impl<'de> Deserialize<'de> for SerdeValue
impl<'de> Deserialize<'de> for SerdeValue
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SerdeValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SerdeValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SerdeValue> for Value
impl From<SerdeValue> for Value
Source§fn from(serde_value: SerdeValue) -> Value
fn from(serde_value: SerdeValue) -> Value
Converts to this type from the input type.
Source§impl From<Value> for SerdeValue
impl From<Value> for SerdeValue
Source§fn from(value: Value) -> SerdeValue
fn from(value: Value) -> SerdeValue
Converts to this type from the input type.
Source§impl PartialEq for SerdeValue
impl PartialEq for SerdeValue
Source§impl Serialize for SerdeValue
impl Serialize for SerdeValue
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SerdeValue
Auto Trait Implementations§
impl Freeze for SerdeValue
impl RefUnwindSafe for SerdeValue
impl Send for SerdeValue
impl Sync for SerdeValue
impl Unpin for SerdeValue
impl UnsafeUnpin for SerdeValue
impl UnwindSafe for SerdeValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more