GtkBox::pack_start_defaults

void pack_start_defaults( GtkWidget widget );

pack_start_defaults() packs the given child widget from the top or from the left of the box container using the default parameter values true, true, 0.

The same result can be achieved by using

$box->pack_start($child);
without specifying any further parameters.