Skip to content

Commit 7a9264a

Browse files
committed
remove default marker
1 parent 0b32067 commit 7a9264a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/cell_value.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
use leptos::prelude::*;
22

3-
#[doc(hidden)]
4-
pub type DefaultMarker = ();
5-
63
#[derive(Default, Clone, Copy)]
74
pub struct NumberRenderOptions {
85
/// Specifies the number of digits to display after the decimal point
@@ -19,7 +16,7 @@ pub trait CellValue<M: ?Sized> {
1916
fn render_value(self, options: Self::RenderOptions) -> impl IntoView;
2017
}
2118

22-
impl<V> CellValue<DefaultMarker> for V
19+
impl<V> CellValue<()> for V
2320
where
2421
V: IntoView,
2522
{

0 commit comments

Comments
 (0)