pub struct Table(pub BracketedList<TableField>);Expand description
Struct representing a luau table.
Tuple Fields§
§0: BracketedList<TableField>Trait Implementations§
impl Eq for Table
Source§impl Ord for Table
impl Ord for Table
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
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.
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl !Send for Table
impl !Sync for Table
impl Freeze for Table
impl RefUnwindSafe for Table
impl Unpin for Table
impl UnsafeUnpin 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