pub struct View {
pub children: Vec<Box<dyn Widget>>,
/* private fields */
}Expand description
Root view container — holds a tree of boxed widgets.
Fields§
§children: Vec<Box<dyn Widget>>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for View
impl !Send for View
impl !Sync for View
impl !UnwindSafe for View
impl Freeze for View
impl Unpin for View
impl UnsafeUnpin for View
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