pub enum CompiledFSPart {
Lit(Arc<str>),
Interp {
prog: Arc<Program>,
fmt: Option<FmtSpec>,
},
}Expand description
A compiled f-string interpolation part.
Variants§
Trait Implementations§
Source§impl Clone for CompiledFSPart
impl Clone for CompiledFSPart
Source§fn clone(&self) -> CompiledFSPart
fn clone(&self) -> CompiledFSPart
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 moreAuto Trait Implementations§
impl Freeze for CompiledFSPart
impl RefUnwindSafe for CompiledFSPart
impl Send for CompiledFSPart
impl Sync for CompiledFSPart
impl Unpin for CompiledFSPart
impl UnsafeUnpin for CompiledFSPart
impl UnwindSafe for CompiledFSPart
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