pub struct BoxLayoutSettings<T> {
pub hor: T,
pub ver: T,
pub width: T,
pub height: T,
pub corner: T,
pub line: T,
pub text_size: T,
pub name_size: T,
}Fields§
§hor: T§ver: T§width: T§height: T§corner: T§line: T§text_size: T§name_size: TTrait Implementations§
Source§impl<T: Clone> Clone for BoxLayoutSettings<T>
impl<T: Clone> Clone for BoxLayoutSettings<T>
Source§fn clone(&self) -> BoxLayoutSettings<T>
fn clone(&self) -> BoxLayoutSettings<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for BoxLayoutSettings<T>where
T: Freeze,
impl<T> RefUnwindSafe for BoxLayoutSettings<T>where
T: RefUnwindSafe,
impl<T> Send for BoxLayoutSettings<T>where
T: Send,
impl<T> Sync for BoxLayoutSettings<T>where
T: Sync,
impl<T> Unpin for BoxLayoutSettings<T>where
T: Unpin,
impl<T> UnwindSafe for BoxLayoutSettings<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more