pub struct ContainerGeometry<'a> {
pub label: String,
pub border: ContainerBorder,
pub label_color: Color,
pub layers: Vec<LayerGeometry<'a>>,
}Expand description
Layout of a container wrapping nested tiers.
Fields§
§label: StringContainer label text.
border: ContainerBorderContainer border style.
label_color: ColorContainer label color.
layers: Vec<LayerGeometry<'a>>Nested layer geometries.
Trait Implementations§
Source§impl<'a> Clone for ContainerGeometry<'a>
impl<'a> Clone for ContainerGeometry<'a>
Source§fn clone(&self) -> ContainerGeometry<'a>
fn clone(&self) -> ContainerGeometry<'a>
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 moreSource§impl<'a> Debug for ContainerGeometry<'a>
impl<'a> Debug for ContainerGeometry<'a>
Source§impl<'a> PartialEq for ContainerGeometry<'a>
impl<'a> PartialEq for ContainerGeometry<'a>
impl<'a> StructuralPartialEq for ContainerGeometry<'a>
Auto Trait Implementations§
impl<'a> Freeze for ContainerGeometry<'a>
impl<'a> RefUnwindSafe for ContainerGeometry<'a>
impl<'a> Send for ContainerGeometry<'a>
impl<'a> Sync for ContainerGeometry<'a>
impl<'a> Unpin for ContainerGeometry<'a>
impl<'a> UnsafeUnpin for ContainerGeometry<'a>
impl<'a> UnwindSafe for ContainerGeometry<'a>
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