pub struct FieldGroup {
pub name: &'static str,
pub fields: Vec<(&'static str, &'static str, String)>,
pub subgroups: Vec<FieldSubgroup>,
}Fields§
§name: &'static str§fields: Vec<(&'static str, &'static str, String)>§subgroups: Vec<FieldSubgroup>Auto Trait Implementations§
impl Freeze for FieldGroup
impl RefUnwindSafe for FieldGroup
impl Send for FieldGroup
impl Sync for FieldGroup
impl Unpin for FieldGroup
impl UnsafeUnpin for FieldGroup
impl UnwindSafe for FieldGroup
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