pub struct MapField {
pub name: String,
pub entries: Vec<(String, String)>,
pub collapsed: bool,
}Expand description
A key-value map field.
Fields§
§name: String§entries: Vec<(String, String)>§collapsed: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MapField
impl RefUnwindSafe for MapField
impl Send for MapField
impl Sync for MapField
impl Unpin for MapField
impl UnsafeUnpin for MapField
impl UnwindSafe for MapField
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