pub struct JSONString(/* private fields */);
Implementations§
Source§impl JSONString
impl JSONString
Trait Implementations§
Source§impl Clone for JSONString
impl Clone for JSONString
Source§fn clone(&self) -> JSONString
fn clone(&self) -> JSONString
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JSONString
impl Debug for JSONString
Source§impl<'a> Deserialize<'a> for JSONString
impl<'a> Deserialize<'a> for JSONString
Source§fn deserialize<D>(
deserializer: D,
) -> Result<JSONString, <D as Deserializer<'a>>::Error>where
D: Deserializer<'a>,
fn deserialize<D>(
deserializer: D,
) -> Result<JSONString, <D as Deserializer<'a>>::Error>where
D: Deserializer<'a>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<JSONString> for Value
impl From<JSONString> for Value
Source§fn from(value: JSONString) -> Value
fn from(value: JSONString) -> Value
Converts to this type from the input type.
Source§impl From<Value> for JSONString
impl From<Value> for JSONString
Source§fn from(value: Value) -> JSONString
fn from(value: Value) -> JSONString
Converts to this type from the input type.
Source§impl PartialEq for JSONString
impl PartialEq for JSONString
Source§impl Serialize for JSONString
impl Serialize for JSONString
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 JSONString
Auto Trait Implementations§
impl Freeze for JSONString
impl RefUnwindSafe for JSONString
impl Send for JSONString
impl Sync for JSONString
impl Unpin for JSONString
impl UnwindSafe for JSONString
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