pub enum MapProjectionSelector {
Property(String),
AllProperties,
Literal(String, Expr),
}Variants§
Property(String)
.propertyName — include a specific property
AllProperties
.* — include all properties
Literal(String, Expr)
key: expr — include a computed entry
Trait Implementations§
Source§impl Clone for MapProjectionSelector
impl Clone for MapProjectionSelector
Source§fn clone(&self) -> MapProjectionSelector
fn clone(&self) -> MapProjectionSelector
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 moreAuto Trait Implementations§
impl Freeze for MapProjectionSelector
impl RefUnwindSafe for MapProjectionSelector
impl Send for MapProjectionSelector
impl Sync for MapProjectionSelector
impl Unpin for MapProjectionSelector
impl UnsafeUnpin for MapProjectionSelector
impl UnwindSafe for MapProjectionSelector
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