pub enum LinePart {
Literal(String),
Slot(u8),
Select {
slot: u8,
variants: Vec<(SelectKey, String)>,
default: String,
},
}Expand description
One segment of a LineTemplate.
Variants§
Literal(String)
A literal string fragment.
Slot(u8)
A value interpolation slot (index into the evaluation stack snapshot).
Select
A plural/keyword select over a slot value.
Trait Implementations§
impl StructuralPartialEq for LinePart
Auto Trait Implementations§
impl Freeze for LinePart
impl RefUnwindSafe for LinePart
impl Send for LinePart
impl Sync for LinePart
impl Unpin for LinePart
impl UnsafeUnpin for LinePart
impl UnwindSafe for LinePart
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