pub struct NestedState {
pub nested: Vec<Box<dyn Nested>>,
}
Expand description
The state of nested data types.
Fields§
§nested: Vec<Box<dyn Nested>>
The nesteds composing NestedState
.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NestedState
impl !RefUnwindSafe for NestedState
impl Send for NestedState
impl Sync for NestedState
impl Unpin for NestedState
impl !UnwindSafe for NestedState
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