pub struct BlockValue {
pub key: String,
pub tag: String,
pub value: Option<Value>,
pub array_index: Option<usize>,
}
Fields§
§key: String
§tag: String
§value: Option<Value>
§array_index: Option<usize>
Trait Implementations§
Source§impl Clone for BlockValue
impl Clone for BlockValue
Source§fn clone(&self) -> BlockValue
fn clone(&self) -> BlockValue
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 BlockValue
impl Debug for BlockValue
Source§impl Default for BlockValue
impl Default for BlockValue
Source§fn default() -> BlockValue
fn default() -> BlockValue
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BlockValue
impl RefUnwindSafe for BlockValue
impl Send for BlockValue
impl Sync for BlockValue
impl Unpin for BlockValue
impl UnwindSafe for BlockValue
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