mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 03:36:42 +01:00
fix some warns
This commit is contained in:
parent
baa582b9dd
commit
d6dcf137a8
4 changed files with 28 additions and 30 deletions
|
|
@ -1,4 +1,4 @@
|
|||
use crate::*;
|
||||
#[allow(unused)] use crate::*;
|
||||
|
||||
pub struct Group<T>(T);
|
||||
|
||||
|
|
|
|||
|
|
@ -95,4 +95,4 @@ mod layout_padding; pub use self::layout_padding::*;
|
|||
mod layout_pull; pub use self::layout_pull::*;
|
||||
mod layout_push; pub use self::layout_push::*;
|
||||
mod layout_shrink; pub use self::layout_shrink::*;
|
||||
mod layout_stack; pub use self::layout_stack::*;
|
||||
mod layout_stack; //pub use self::layout_stack::*;
|
||||
|
|
|
|||
|
|
@ -15,11 +15,9 @@ mod widget; pub use self::widget::*;
|
|||
pub(crate) use self::Direction::*;
|
||||
pub(crate) use std::fmt::{Debug, Display};
|
||||
pub(crate) use std::marker::PhantomData;
|
||||
pub(crate) use std::ops::{Add, Sub, Mul, Div, Deref};
|
||||
pub(crate) use std::rc::Rc;
|
||||
pub(crate) use std::ops::{Add, Sub, Mul, Div};
|
||||
pub(crate) use std::sync::{Arc, RwLock, atomic::{AtomicUsize, Ordering::Relaxed}};
|
||||
pub(crate) use tengri_core::*;
|
||||
#[cfg(feature = "dsl")] pub(crate) use ::tengri_dsl::*;
|
||||
|
||||
/// Draw target.
|
||||
pub trait Out: Send + Sync + Sized {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue