pub struct InterpolationDebugEntry<S> {
pub value: Option<String>,
pub source: S,
pub precedence: i32,
pub order: usize,
}Expand description
One definition of a variable in the interpolation context, for –debug.
Fields§
§value: Option<String>§source: S§precedence: i32§order: usizeTrait Implementations§
Source§impl<S: Clone> Clone for InterpolationDebugEntry<S>
impl<S: Clone> Clone for InterpolationDebugEntry<S>
Source§fn clone(&self) -> InterpolationDebugEntry<S>
fn clone(&self) -> InterpolationDebugEntry<S>
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 moreAuto Trait Implementations§
impl<S> Freeze for InterpolationDebugEntry<S>where
S: Freeze,
impl<S> RefUnwindSafe for InterpolationDebugEntry<S>where
S: RefUnwindSafe,
impl<S> Send for InterpolationDebugEntry<S>where
S: Send,
impl<S> Sync for InterpolationDebugEntry<S>where
S: Sync,
impl<S> Unpin for InterpolationDebugEntry<S>where
S: Unpin,
impl<S> UnsafeUnpin for InterpolationDebugEntry<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for InterpolationDebugEntry<S>where
S: UnwindSafe,
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