pub struct FieldGroup {
pub path: Option<String>,
pub label: Option<String>,
pub iteration: Iteration,
pub fields: Vec<DisplayField>,
}Expand description
A field group — replaces v1’s nestedFields.
Fields§
§path: Option<String>§label: Option<String>§iteration: Iteration§fields: Vec<DisplayField>Trait Implementations§
Source§impl Clone for FieldGroup
impl Clone for FieldGroup
Source§fn clone(&self) -> FieldGroup
fn clone(&self) -> FieldGroup
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FieldGroup
impl Debug for FieldGroup
Source§impl<'de> Deserialize<'de> for FieldGroup
impl<'de> Deserialize<'de> for FieldGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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