pub struct JsonEntryValue {
pub space_bf_key: Option<String>,
pub key: Option<String>,
pub space_af_key: Option<String>,
pub space_bf_val: Option<String>,
pub value: Option<JsonValue>,
pub space_af_val: Option<String>,
}
Fields§
§space_bf_key: Option<String>
§key: Option<String>
§space_af_key: Option<String>
§space_bf_val: Option<String>
§value: Option<JsonValue>
§space_af_val: Option<String>
Implementations§
Source§impl JsonEntryValue
impl JsonEntryValue
pub fn get_sp_bf_key(&self) -> String
pub fn get_key(&self) -> String
pub fn get_sp_af_key(&self) -> String
pub fn get_value(&self) -> JsonValue
pub fn get_sp_bf_val(&self) -> String
pub fn get_sp_af_val(&self) -> String
Trait Implementations§
Source§impl Clone for JsonEntryValue
impl Clone for JsonEntryValue
Source§fn clone(&self) -> JsonEntryValue
fn clone(&self) -> JsonEntryValue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JsonEntryValue
impl Debug for JsonEntryValue
Source§impl PartialEq for JsonEntryValue
impl PartialEq for JsonEntryValue
impl StructuralPartialEq for JsonEntryValue
Auto Trait Implementations§
impl Freeze for JsonEntryValue
impl RefUnwindSafe for JsonEntryValue
impl Send for JsonEntryValue
impl Sync for JsonEntryValue
impl Unpin for JsonEntryValue
impl UnwindSafe for JsonEntryValue
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