pub enum ProposedPlanSegment {
Normal(String),
ProposedPlanStart,
ProposedPlanDelta(String),
ProposedPlanEnd,
}Variants§
Trait Implementations§
Source§impl Clone for ProposedPlanSegment
impl Clone for ProposedPlanSegment
Source§fn clone(&self) -> ProposedPlanSegment
fn clone(&self) -> ProposedPlanSegment
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 ProposedPlanSegment
impl Debug for ProposedPlanSegment
impl Eq for ProposedPlanSegment
Source§impl PartialEq for ProposedPlanSegment
impl PartialEq for ProposedPlanSegment
impl StructuralPartialEq for ProposedPlanSegment
Auto Trait Implementations§
impl Freeze for ProposedPlanSegment
impl RefUnwindSafe for ProposedPlanSegment
impl Send for ProposedPlanSegment
impl Sync for ProposedPlanSegment
impl Unpin for ProposedPlanSegment
impl UnsafeUnpin for ProposedPlanSegment
impl UnwindSafe for ProposedPlanSegment
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