pub struct InterpolationNode {
pub interpolation_index: usize,
pub expression: String,
pub raw_source: Option<String>,
pub conversion: Option<String>,
pub format_spec: String,
pub span: Option<SourceSpan>,
}Fields§
§interpolation_index: usize§expression: String§raw_source: Option<String>§conversion: Option<String>§format_spec: String§span: Option<SourceSpan>Trait Implementations§
Source§impl Clone for InterpolationNode
impl Clone for InterpolationNode
Source§fn clone(&self) -> InterpolationNode
fn clone(&self) -> InterpolationNode
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 moreSource§impl Debug for InterpolationNode
impl Debug for InterpolationNode
Source§impl PartialEq for InterpolationNode
impl PartialEq for InterpolationNode
impl Eq for InterpolationNode
impl StructuralPartialEq for InterpolationNode
Auto Trait Implementations§
impl Freeze for InterpolationNode
impl RefUnwindSafe for InterpolationNode
impl Send for InterpolationNode
impl Sync for InterpolationNode
impl Unpin for InterpolationNode
impl UnsafeUnpin for InterpolationNode
impl UnwindSafe for InterpolationNode
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