pub struct MapEntry {
pub key: Box<Expr>,
pub value: Box<Expr>,
}Expand description
A map field within a map.
Fields§
§key: Box<Expr>Key expression of the map entry.
value: Box<Expr>Value expression of the map entry.
Trait Implementations§
Source§impl Ord for MapEntry
impl Ord for MapEntry
Source§impl PartialOrd for MapEntry
impl PartialOrd for MapEntry
Source§impl VisitMut for MapEntry
impl VisitMut for MapEntry
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for MapEntry
impl StructuralPartialEq for MapEntry
Auto Trait Implementations§
impl Freeze for MapEntry
impl RefUnwindSafe for MapEntry
impl Send for MapEntry
impl Sync for MapEntry
impl Unpin for MapEntry
impl UnsafeUnpin for MapEntry
impl UnwindSafe for MapEntry
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