makepad_code_editor/
inlays.rs

1use crate::widgets::{BlockWidget, InlineWidget};
2
3#[derive(Clone, Debug, Eq, Hash, PartialEq)]
4pub enum InlineInlay {
5    Text(String),
6    Widget(InlineWidget),
7}
8
9#[derive(Clone, Debug, PartialEq)]
10pub enum BlockInlay {
11    Widget(BlockWidget),
12}