Missing docs

This commit is contained in:
Jonathan Johnson 2024-01-13 06:10:36 -08:00
parent c2bd9911ca
commit 570cfc6d94
No known key found for this signature in database
GPG key ID: A66D6A34D6620579

View file

@ -28,8 +28,10 @@ impl List {
/// The style of a [`List`] widget's item indicators.
#[derive(Default, Debug, Clone)]
pub enum ListStyle {
/// A solid circle indicator, using the unicode bullet indicator.
#[default]
Disc,
/// A custom list indicator style.
Custom(Arc<dyn ListIndicator>),
}