pub struct TableEntries<'gc> { /* private fields */ }Trait Implementations§
Source§impl<'gc> Collect for TableEntries<'gc>
impl<'gc> Collect for TableEntries<'gc>
Source§fn trace(&self, cc: &Collection)
fn trace(&self, cc: &Collection)
Must call
Collect::trace on all held Gc pointers. If this type holds inner types that
implement Collect, a valid implementation would simply call Collect::trace on all the
held values to ensure this.Source§fn needs_trace() -> boolwhere
Self: Sized,
fn needs_trace() -> boolwhere
Self: Sized,
As an optimization, if this type can never hold a
Gc pointer and trace is unnecessary
to call, you may implement this method and return false. The default implementation returns
true, signaling that Collect::trace must be called.Source§impl<'gc> Debug for TableEntries<'gc>
impl<'gc> Debug for TableEntries<'gc>
Source§impl<'gc> Default for TableEntries<'gc>
impl<'gc> Default for TableEntries<'gc>
Source§fn default() -> TableEntries<'gc>
fn default() -> TableEntries<'gc>
Returns the “default value” for a type. Read more
Source§impl<'gc> FromIterator<(Value<'gc>, Value<'gc>)> for TableEntries<'gc>
impl<'gc> FromIterator<(Value<'gc>, Value<'gc>)> for TableEntries<'gc>
Source§impl<'gc> FromIterator<Value<'gc>> for TableEntries<'gc>
impl<'gc> FromIterator<Value<'gc>> for TableEntries<'gc>
Source§impl<'gc> IntoValue<'gc> for TableEntries<'gc>
impl<'gc> IntoValue<'gc> for TableEntries<'gc>
fn into_value(self, ctx: Context<'gc>) -> Value<'gc>
Auto Trait Implementations§
impl<'gc> Freeze for TableEntries<'gc>
impl<'gc> !RefUnwindSafe for TableEntries<'gc>
impl<'gc> !Send for TableEntries<'gc>
impl<'gc> !Sync for TableEntries<'gc>
impl<'gc> Unpin for TableEntries<'gc>
impl<'gc> !UnwindSafe for TableEntries<'gc>
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