pub enum BlockType {
Show 15 variants
Unknown = 0,
FlowingText = 1,
HeadingText = 2,
PulloutText = 3,
Equation = 4,
InlineEquation = 5,
Table = 6,
VerticalText = 7,
CaptionText = 8,
FlowingImage = 9,
HeadingImage = 10,
PulloutImage = 11,
HorzLine = 12,
VertLine = 13,
Noise = 14,
}Expand description
Block type.
Variants§
Unknown = 0
Type is not yet known.
FlowingText = 1
Text that lives inside a column.
HeadingText = 2
Text that spans more than one column.
PulloutText = 3
Text that is in a cross-column pull-out region.
Equation = 4
Partition belonging to an equation region.
InlineEquation = 5
Partition has inline equation.
Table = 6
Partition belonging to a table region.
VerticalText = 7
Text-line runs vertically.
CaptionText = 8
Text that belongs to an image.
FlowingImage = 9
Image that lives inside a column.
HeadingImage = 10
Image that spans more than one column.
PulloutImage = 11
Image that is in a cross-column pull-out region.
HorzLine = 12
Horizontal line.
VertLine = 13
Vertical line.
Noise = 14
Lies outside of any column.
Trait Implementations§
Source§impl Ord for BlockType
impl Ord for BlockType
Source§impl PartialOrd for BlockType
impl PartialOrd for BlockType
impl Copy for BlockType
impl Eq for BlockType
impl StructuralPartialEq for BlockType
Auto Trait Implementations§
impl Freeze for BlockType
impl RefUnwindSafe for BlockType
impl Send for BlockType
impl Sync for BlockType
impl Unpin for BlockType
impl UnsafeUnpin for BlockType
impl UnwindSafe for BlockType
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