pub enum TemplatePart {
Text(String),
Expr(Box<Expr>),
}Expand description
A part of a template literal.
Variants§
Trait Implementations§
Source§impl Clone for TemplatePart
impl Clone for TemplatePart
Source§fn clone(&self) -> TemplatePart
fn clone(&self) -> TemplatePart
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 TemplatePart
impl Debug for TemplatePart
Source§impl<'de> Deserialize<'de> for TemplatePart
impl<'de> Deserialize<'de> for TemplatePart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TemplatePart
impl PartialEq for TemplatePart
Source§fn eq(&self, other: &TemplatePart) -> bool
fn eq(&self, other: &TemplatePart) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TemplatePart
impl Serialize for TemplatePart
Source§impl StructureEq for TemplatePart
impl StructureEq for TemplatePart
Source§fn structure_eq(&self, other: &Self) -> bool
fn structure_eq(&self, other: &Self) -> bool
Compare two values for structural equality.
impl StructuralPartialEq for TemplatePart
Auto Trait Implementations§
impl Freeze for TemplatePart
impl RefUnwindSafe for TemplatePart
impl Send for TemplatePart
impl Sync for TemplatePart
impl Unpin for TemplatePart
impl UnsafeUnpin for TemplatePart
impl UnwindSafe for TemplatePart
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request