pub enum NoticeCard {
TextNotice {
emphasis_content: Option<EmphasisContent>,
sub_title_text: Option<String>,
},
NewsNotice {
card_image: Option<CardImage>,
image_text_area: Option<ImageTextArea>,
vertical_content_list: Option<Vec<VerticalContent>>,
},
}Variants§
TextNotice
NewsNotice
Trait Implementations§
Source§impl Clone for NoticeCard
impl Clone for NoticeCard
Source§fn clone(&self) -> NoticeCard
fn clone(&self) -> NoticeCard
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 NoticeCard
impl Debug for NoticeCard
Auto Trait Implementations§
impl Freeze for NoticeCard
impl RefUnwindSafe for NoticeCard
impl Send for NoticeCard
impl Sync for NoticeCard
impl Unpin for NoticeCard
impl UnwindSafe for NoticeCard
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