pub struct Panel {
pub title: String,
pub children: Vec<String>,
pub collapsible: bool,
pub collapsed: bool,
pub padding: String,
}Fields§
§title: String§children: Vec<String>§collapsible: bool§collapsed: bool§padding: StringImplementations§
Trait Implementations§
impl Eq for Panel
impl StructuralPartialEq for Panel
Auto Trait Implementations§
impl Freeze for Panel
impl RefUnwindSafe for Panel
impl Send for Panel
impl Sync for Panel
impl Unpin for Panel
impl UnwindSafe for Panel
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