The Views array item sets up links at the top of the table that are usually used for defining the list table Trash or other views. In the standard sample the Views array is returned from a callable. Saturn Tables is designed so callables can be used to return arrays or strings defined by logic.

$list_table_definitions['views'] = call_user_func("my_cars_views");
function my_cars_views() {

    if (isset($_GET['status']) && $_GET['status'] == "trash") {
        $all = '<a href="' . admin_url("admin.php?page=my-cars-table&status=all") . '">' . __("All") . '</a>';
        $trash = '<span>' . __("Trash") . '</span>';
    } else {
        $all = '<span>' . __("All") . '</span>';
        $trash = '<a href="' . admin_url("admin.php?page=my-cars-table&status=trash") . '">' . __("Trash") . '</a>';    
    }

    return array( "all" => $all, "trash" => $trash);
}