Merge pull request #128 from Gohla/fix_unnecessary_bound

Remove unnecessary bound in iced_web Container
This commit is contained in:
Héctor Ramón 2019-12-18 23:20:48 +01:00 committed by GitHub
commit 441c6730e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,7 +134,7 @@ where
impl<'a, Message> From<Container<'a, Message>> for Element<'a, Message>
where
Message: 'static + Clone,
Message: 'static,
{
fn from(container: Container<'a, Message>) -> Element<'a, Message> {
Element::new(container)