pub enum KeyValueConstructor {
Integer(IntegerNode),
Boolean(BooleanNode),
Str(StrNode),
KeyTuple(KeyTupleNode),
}Variants§
Implementations§
Source§impl KeyValueConstructor
impl KeyValueConstructor
pub fn build(self) -> KeyValueNode
Auto Trait Implementations§
impl Freeze for KeyValueConstructor
impl RefUnwindSafe for KeyValueConstructor
impl Send for KeyValueConstructor
impl Sync for KeyValueConstructor
impl Unpin for KeyValueConstructor
impl UnwindSafe for KeyValueConstructor
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