pub enum Table<'a> {
Org {
tblfm: Option<Cow<'a, str>>,
post_blank: usize,
has_header: bool,
},
TableEl {
value: Cow<'a, str>,
post_blank: usize,
},
}
Expand description
Table Element
Variants§
Org
“org” type table
Fields
TableEl
“table.el” type table
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Table<'a>
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> Send for Table<'a>
impl<'a> Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'a>
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