pub struct AccordionItem {
pub key: String,
pub title: String,
pub content: ComponentSchema,
pub disabled: Option<Value>,
}Expand description
Accordion item.
Fields§
§key: String§title: String§content: ComponentSchema§disabled: Option<Value>Trait Implementations§
Source§impl Clone for AccordionItem
impl Clone for AccordionItem
Source§fn clone(&self) -> AccordionItem
fn clone(&self) -> AccordionItem
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 AccordionItem
impl Debug for AccordionItem
Source§impl<'de> Deserialize<'de> for AccordionItem
impl<'de> Deserialize<'de> for AccordionItem
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 AccordionItem
impl RefUnwindSafe for AccordionItem
impl Send for AccordionItem
impl Sync for AccordionItem
impl Unpin for AccordionItem
impl UnwindSafe for AccordionItem
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