pub struct ConditionalTableRows {
pub span: Span,
pub condition: Expression,
pub rows: Vec<TableRowElement>,
}Expand description
조건부 테이블 행 ({{{#if condition :: [[row]]…}}})
Fields§
§span: Span§condition: Expression§rows: Vec<TableRowElement>Trait Implementations§
Source§impl Clone for ConditionalTableRows
impl Clone for ConditionalTableRows
Source§fn clone(&self) -> ConditionalTableRows
fn clone(&self) -> ConditionalTableRows
Returns a duplicate 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 ConditionalTableRows
impl Debug for ConditionalTableRows
Auto Trait Implementations§
impl Freeze for ConditionalTableRows
impl RefUnwindSafe for ConditionalTableRows
impl Send for ConditionalTableRows
impl Sync for ConditionalTableRows
impl Unpin for ConditionalTableRows
impl UnwindSafe for ConditionalTableRows
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