pub enum JsonobjectValue {
JsonObjectValue(JsonObjectValue),
}Expand description
Variants§
JsonObjectValue(JsonObjectValue)
Trait Implementations§
Source§impl Clone for JsonobjectValue
impl Clone for JsonobjectValue
Source§fn clone(&self) -> JsonobjectValue
fn clone(&self) -> JsonobjectValue
Returns a duplicate 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 JsonobjectValue
impl Debug for JsonobjectValue
Source§impl Deserializable for JsonobjectValue
impl Deserializable for JsonobjectValue
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<JsonObjectValue> for JsonobjectValue
impl From<JsonObjectValue> for JsonobjectValue
Source§fn from(x: JsonObjectValue) -> Self
fn from(x: JsonObjectValue) -> Self
Converts to this type from the input type.
Source§impl PartialEq for JsonobjectValue
impl PartialEq for JsonobjectValue
Source§impl Serializable for JsonobjectValue
impl Serializable for JsonobjectValue
Source§impl TryFrom<JsonobjectValue> for JsonObjectValue
impl TryFrom<JsonobjectValue> for JsonObjectValue
Source§type Error = JsonobjectValue
type Error = JsonobjectValue
The type returned in the event of a conversion error.
impl StructuralPartialEq for JsonobjectValue
Auto Trait Implementations§
impl Freeze for JsonobjectValue
impl RefUnwindSafe for JsonobjectValue
impl Send for JsonobjectValue
impl Sync for JsonobjectValue
impl Unpin for JsonobjectValue
impl UnsafeUnpin for JsonobjectValue
impl UnwindSafe for JsonobjectValue
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