We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b32067 commit 7a9264aCopy full SHA for 7a9264a
1 file changed
src/cell_value.rs
@@ -1,8 +1,5 @@
1
use leptos::prelude::*;
2
3
-#[doc(hidden)]
4
-pub type DefaultMarker = ();
5
-
6
#[derive(Default, Clone, Copy)]
7
pub struct NumberRenderOptions {
8
/// Specifies the number of digits to display after the decimal point
@@ -19,7 +16,7 @@ pub trait CellValue<M: ?Sized> {
19
16
fn render_value(self, options: Self::RenderOptions) -> impl IntoView;
20
17
}
21
18
22
-impl<V> CellValue<DefaultMarker> for V
+impl<V> CellValue<()> for V
23
where
24
V: IntoView,
25
{
0 commit comments