pub struct FieldOption {
pub label: String,
pub value: String,
pub children: Option<Vec<FieldOption>>,
}Fields§
§label: String§value: String§children: Option<Vec<FieldOption>>Trait Implementations§
Source§impl Clone for FieldOption
impl Clone for FieldOption
Source§fn clone(&self) -> FieldOption
fn clone(&self) -> FieldOption
Returns a duplicate of the value. Read more
1.0.0 · 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 FieldOption
impl Debug for FieldOption
Source§impl<'de> Deserialize<'de> for FieldOption
impl<'de> Deserialize<'de> for FieldOption
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 FieldOption
impl RefUnwindSafe for FieldOption
impl Send for FieldOption
impl Sync for FieldOption
impl Unpin for FieldOption
impl UnwindSafe for FieldOption
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