pub struct JsonObjectValue {
pub key: String,
pub value: Jsonvalue,
}Expand description
Generated from the following TL definition:
jsonObjectValue#c0de1bd9 key:string value:JSONValue = JSONObjectValueFields§
§key: String§value: JsonvalueTrait 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§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 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 Identifiable for JsonObjectValue
impl Identifiable for JsonObjectValue
Source§const CONSTRUCTOR_ID: u32 = 3235781593
const CONSTRUCTOR_ID: u32 = 3235781593
The unique identifier for the type.
Source§impl PartialEq for JsonObjectValue
impl PartialEq for JsonObjectValue
Source§impl Serializable for JsonObjectValue
impl Serializable for JsonObjectValue
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