pub enum PlannedValue {
Dto {
type_name: String,
items: Vec<ItemPlan>,
},
Scalar {
item: ItemPlan,
},
Parameters {
items: Vec<ItemPlan>,
},
}Variants§
Trait Implementations§
Source§impl Clone for PlannedValue
impl Clone for PlannedValue
Source§fn clone(&self) -> PlannedValue
fn clone(&self) -> PlannedValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlannedValue
impl Debug for PlannedValue
Source§impl PartialEq for PlannedValue
impl PartialEq for PlannedValue
Source§fn eq(&self, other: &PlannedValue) -> bool
fn eq(&self, other: &PlannedValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PlannedValue
impl StructuralPartialEq for PlannedValue
Auto Trait Implementations§
impl Freeze for PlannedValue
impl RefUnwindSafe for PlannedValue
impl Send for PlannedValue
impl Sync for PlannedValue
impl Unpin for PlannedValue
impl UnsafeUnpin for PlannedValue
impl UnwindSafe for PlannedValue
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