usecrate::Text;/// Configuration settings used in the execution of a TextPrompt.
#[derive(Copy, Clone, Debug)]pubstructTextConfig{/// Page size of the suggestion list, if it exists.
pubpage_size:usize,
}implFrom<&Text<'_, '_>>forTextConfig{fnfrom(value:&Text<'_, '_>)->Self{Self{
page_size: value.page_size,}}}