pub struct Table(pub BracketedList<TableField>);Expand description
Struct representing a luau table.
Tuple Fields§
§0: BracketedList<TableField>Trait Implementations§
Source§impl Ord for Table
impl Ord for Table
Source§impl Parse<FunctionArguments> for Table
impl Parse<FunctionArguments> for Table
Source§impl ParseWithArgs<bool> for Table
impl ParseWithArgs<bool> for Table
Source§impl PartialOrd for Table
impl PartialOrd for Table
Source§impl Print for Table
impl Print for Table
Source§fn print_final_trivia(&self) -> String
fn print_final_trivia(&self) -> String
Prints only the very final trivia. Used for the default implementation of
Print::print, which just joins Print::print_without_final_trivia
and this function.Source§fn print_without_final_trivia(&self) -> String
fn print_without_final_trivia(&self) -> String
Prints the whole token including all surrounding trivia, excluding the
very last trailing trivia.
Source§impl TryParse<FunctionArguments> for Table
impl TryParse<FunctionArguments> for Table
impl Eq for Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl !Send for Table
impl !Sync for Table
impl Unpin for Table
impl UnwindSafe for Table
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