use crate::components::*;
use proc_macro2::TokenStream;
impl super::ComponentLayout for SwitchComponent {
fn field_tokens(
&self,
_field_structure_tokens: &mut TokenStream,
_field_base_declarations_tokens: &mut TokenStream,
) {
let FieldInformation::<SwitchOptions> {
options: _,
name: _,
r#type: _,
} = &self.0;
}
}