pub enum ContainerChildBlock {
Actions(Actions),
Context(Context),
Divider(Divider),
File(File),
Header(Header),
Image(Image),
Input(Input),
RichText(RichText),
Section(Section),
Table(Table),
Video(Video),
}Expand description
Child blocks that can be included in a container block.
Variants§
Actions(Actions)
Actions block.
Context(Context)
Context block.
Divider(Divider)
Divider block.
File(File)
File block.
Header(Header)
Header block.
Image(Image)
Image block.
Input(Input)
Input block.
RichText(RichText)
RichText block.
Section(Section)
Section block.
Table(Table)
Table block.
Video(Video)
Video block.
Trait Implementations§
Source§impl Clone for ContainerChildBlock
impl Clone for ContainerChildBlock
Source§fn clone(&self) -> ContainerChildBlock
fn clone(&self) -> ContainerChildBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContainerChildBlock
impl Debug for ContainerChildBlock
Source§impl From<Actions> for ContainerChildBlock
impl From<Actions> for ContainerChildBlock
Source§impl From<Context> for ContainerChildBlock
impl From<Context> for ContainerChildBlock
Source§impl From<Divider> for ContainerChildBlock
impl From<Divider> for ContainerChildBlock
Source§impl From<File> for ContainerChildBlock
impl From<File> for ContainerChildBlock
Source§impl From<Header> for ContainerChildBlock
impl From<Header> for ContainerChildBlock
Source§impl From<Image> for ContainerChildBlock
impl From<Image> for ContainerChildBlock
Source§impl From<Input> for ContainerChildBlock
impl From<Input> for ContainerChildBlock
Source§impl From<RichText> for ContainerChildBlock
impl From<RichText> for ContainerChildBlock
Source§impl From<Section> for ContainerChildBlock
impl From<Section> for ContainerChildBlock
Source§impl From<Table> for ContainerChildBlock
impl From<Table> for ContainerChildBlock
Source§impl From<Video> for ContainerChildBlock
impl From<Video> for ContainerChildBlock
Source§impl PartialEq for ContainerChildBlock
impl PartialEq for ContainerChildBlock
Source§fn eq(&self, other: &ContainerChildBlock) -> bool
fn eq(&self, other: &ContainerChildBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContainerChildBlock
impl Serialize for ContainerChildBlock
impl StructuralPartialEq for ContainerChildBlock
Auto Trait Implementations§
impl Freeze for ContainerChildBlock
impl RefUnwindSafe for ContainerChildBlock
impl Send for ContainerChildBlock
impl Sync for ContainerChildBlock
impl Unpin for ContainerChildBlock
impl UnsafeUnpin for ContainerChildBlock
impl UnwindSafe for ContainerChildBlock
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