#[non_exhaustive]pub struct CarouselSelect {
pub items: Vec<Item>,
/* private fields */
}Available on crate features
answer-records or intents or participants or sessions only.Expand description
The card for presenting a carousel of options to select from.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.items: Vec<Item>Required. Carousel items.
Implementations§
Trait Implementations§
Source§impl Clone for CarouselSelect
impl Clone for CarouselSelect
Source§fn clone(&self) -> CarouselSelect
fn clone(&self) -> CarouselSelect
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 CarouselSelect
impl Debug for CarouselSelect
Source§impl Default for CarouselSelect
impl Default for CarouselSelect
Source§fn default() -> CarouselSelect
fn default() -> CarouselSelect
Returns the “default value” for a type. Read more
Source§impl Message for CarouselSelect
impl Message for CarouselSelect
Source§impl PartialEq for CarouselSelect
impl PartialEq for CarouselSelect
impl StructuralPartialEq for CarouselSelect
Auto Trait Implementations§
impl Freeze for CarouselSelect
impl RefUnwindSafe for CarouselSelect
impl Send for CarouselSelect
impl Sync for CarouselSelect
impl Unpin for CarouselSelect
impl UnwindSafe for CarouselSelect
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