pub struct ListTableContext {
pub list_prefix: String,
pub content_indent: usize,
}Expand description
Context information for tables inside list items
Fields§
§list_prefix: StringThe list marker prefix including any leading whitespace (e.g., “- “, “ 1. “)
content_indent: usizeNumber of spaces for continuation lines to align with content
Trait Implementations§
Source§impl Clone for ListTableContext
impl Clone for ListTableContext
Source§fn clone(&self) -> ListTableContext
fn clone(&self) -> ListTableContext
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 moreAuto Trait Implementations§
impl Freeze for ListTableContext
impl RefUnwindSafe for ListTableContext
impl Send for ListTableContext
impl Sync for ListTableContext
impl Unpin for ListTableContext
impl UnsafeUnpin for ListTableContext
impl UnwindSafe for ListTableContext
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