diff options
author | 2019-11-22 21:16:40 +0100 | |
---|---|---|
committer | 2019-11-22 21:16:40 +0100 | |
commit | d136b7ce648cde0dcdcc5388d8cb82b3e7e0fc58 (patch) | |
tree | f9d6d1bc6366cca18a1fa6bfae977364cfc03447 /native/src/widget/container.rs | |
parent | 42e775fecec81acd40dbc5f536c8a4cd98a03662 (diff) | |
download | iced-d136b7ce648cde0dcdcc5388d8cb82b3e7e0fc58.tar.gz iced-d136b7ce648cde0dcdcc5388d8cb82b3e7e0fc58.tar.bz2 iced-d136b7ce648cde0dcdcc5388d8cb82b3e7e0fc58.zip |
Uncomment missing debug implementations rule
Diffstat (limited to 'native/src/widget/container.rs')
-rw-r--r-- | native/src/widget/container.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/container.rs b/native/src/widget/container.rs index 64a5f4da..7852eecf 100644 --- a/native/src/widget/container.rs +++ b/native/src/widget/container.rs @@ -10,7 +10,7 @@ use std::u32; /// An element decorating some content. /// /// It is normally used for alignment purposes. -#[allow(missing_docs)] +#[allow(missing_debug_implementations)] pub struct Container<'a, Message, Renderer> { width: Length, height: Length, |