pub enum BlockChildType {
Text(TextCell),
Delimited(DelimitedCell),
}
Variants§
Text(TextCell)
Delimited(DelimitedCell)
Trait Implementations§
Source§impl BlockChild<BlockChildType> for BlockChildType
impl BlockChild<BlockChildType> for BlockChildType
fn push_cell(parent: &mut BlockCell, block: BlockChildType)
fn insert_block_child(parent: &mut DataCell, block_child: BlockChildType)
fn add_block_at_first( add_to: &mut DataCell, block_id: usize, block_child: &BlockChildType, block_options: Option<&BlockCell>, )
fn insert_text_to_first_block_child_text( add_to: &mut DataCell, block_id: usize, text_to_insert: &str, )
Source§impl Clone for BlockChildType
impl Clone for BlockChildType
Source§fn clone(&self) -> BlockChildType
fn clone(&self) -> BlockChildType
Returns a copy 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 BlockChildType
impl Debug for BlockChildType
Source§impl<'de> Deserialize<'de> for BlockChildType
impl<'de> Deserialize<'de> for BlockChildType
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 BlockChildType
impl RefUnwindSafe for BlockChildType
impl Send for BlockChildType
impl Sync for BlockChildType
impl Unpin for BlockChildType
impl UnwindSafe for BlockChildType
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