Remove Clone bound for HighlightedLabel

This commit is contained in:
Marshall Bowers 2023-10-19 16:34:08 -04:00
parent 3ac7ef90ef
commit fa3916d1bf
2 changed files with 7 additions and 7 deletions

View file

@ -122,11 +122,11 @@ mod stories {
use super::*;
#[derive(Element)]
pub struct InputStory<S: 'static + Send + Sync + Clone> {
pub struct InputStory<S: 'static + Send + Sync> {
state_type: PhantomData<S>,
}
impl<S: 'static + Send + Sync + Clone> InputStory<S> {
impl<S: 'static + Send + Sync> InputStory<S> {
pub fn new() -> Self {
Self {
state_type: PhantomData,