#[repr(C)]pub struct BracedExpressionStringPart {
pub left_brace: Span,
pub expression: Box<Expression>,
pub right_brace: Span,
}Fields§
§left_brace: Span§expression: Box<Expression>§right_brace: SpanTrait Implementations§
Source§impl Clone for BracedExpressionStringPart
impl Clone for BracedExpressionStringPart
Source§fn clone(&self) -> BracedExpressionStringPart
fn clone(&self) -> BracedExpressionStringPart
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 BracedExpressionStringPart
impl Debug for BracedExpressionStringPart
Source§impl<'de> Deserialize<'de> for BracedExpressionStringPart
impl<'de> Deserialize<'de> for BracedExpressionStringPart
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 HasSpan for BracedExpressionStringPart
impl HasSpan for BracedExpressionStringPart
Source§impl Hash for BracedExpressionStringPart
impl Hash for BracedExpressionStringPart
Source§impl Ord for BracedExpressionStringPart
impl Ord for BracedExpressionStringPart
Source§fn cmp(&self, other: &BracedExpressionStringPart) -> Ordering
fn cmp(&self, other: &BracedExpressionStringPart) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for BracedExpressionStringPart
impl PartialOrd for BracedExpressionStringPart
impl Eq for BracedExpressionStringPart
impl StructuralPartialEq for BracedExpressionStringPart
Auto Trait Implementations§
impl Freeze for BracedExpressionStringPart
impl RefUnwindSafe for BracedExpressionStringPart
impl Send for BracedExpressionStringPart
impl Sync for BracedExpressionStringPart
impl Unpin for BracedExpressionStringPart
impl UnwindSafe for BracedExpressionStringPart
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