pub enum FStringPart {
Text(String),
Expression(Expression),
}Expand description
Parts of an f-string
Variants§
Trait Implementations§
Source§impl Clone for FStringPart
impl Clone for FStringPart
Source§fn clone(&self) -> FStringPart
fn clone(&self) -> FStringPart
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 FStringPart
impl Debug for FStringPart
Source§impl<'de> Deserialize<'de> for FStringPart
impl<'de> Deserialize<'de> for FStringPart
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 FStringPart
impl PartialEq for FStringPart
Source§impl Serialize for FStringPart
impl Serialize for FStringPart
impl StructuralPartialEq for FStringPart
Auto Trait Implementations§
impl Freeze for FStringPart
impl RefUnwindSafe for FStringPart
impl Send for FStringPart
impl Sync for FStringPart
impl Unpin for FStringPart
impl UnwindSafe for FStringPart
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