diff --git a/rustdoc/game/all.html b/rustdoc/game/all.html index 88dabbbcc8..7393b33b6c 100644 --- a/rustdoc/game/all.html +++ b/rustdoc/game/all.html @@ -1,3 +1,3 @@ List of all items in this crate

[] - List of all items

Structs

Enums

Traits

Functions

Typedefs

Constants

\ No newline at end of file + List of all items

Structs

Enums

Traits

Functions

Typedefs

Constants

\ No newline at end of file diff --git a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html index 098d56e6f1..f9505bc0a6 100644 --- a/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html +++ b/rustdoc/game/pregame/built_info/constant.BUILT_TIME_UTC.html @@ -1,2 +1,2 @@ -game::pregame::built_info::BUILT_TIME_UTC - Rust

[][src]Constant game::pregame::built_info::BUILT_TIME_UTC

pub const BUILT_TIME_UTC: &str = "Wed, 23 Sep 2020 20:24:49 +0000";

The built-time in RFC2822, UTC

+game::pregame::built_info::BUILT_TIME_UTC - Rust

[][src]Constant game::pregame::built_info::BUILT_TIME_UTC

pub const BUILT_TIME_UTC: &str = "Wed, 23 Sep 2020 21:20:33 +0000";

The built-time in RFC2822, UTC

\ No newline at end of file diff --git a/rustdoc/game/sandbox/dashboards/table/fn.make_pagination.html b/rustdoc/game/sandbox/dashboards/table/fn.make_pagination.html new file mode 100644 index 0000000000..a2d85cb03e --- /dev/null +++ b/rustdoc/game/sandbox/dashboards/table/fn.make_pagination.html @@ -0,0 +1 @@ +game::sandbox::dashboards::table::make_pagination - Rust

[][src]Function game::sandbox::dashboards::table::make_pagination

fn make_pagination(ctx: &mut EventCtx, total: usize, skip: usize) -> Widget
\ No newline at end of file diff --git a/rustdoc/game/sandbox/dashboards/table/fn.make_table.html b/rustdoc/game/sandbox/dashboards/table/fn.make_table.html index 49ece75287..92a268dced 100644 --- a/rustdoc/game/sandbox/dashboards/table/fn.make_table.html +++ b/rustdoc/game/sandbox/dashboards/table/fn.make_table.html @@ -1 +1 @@ -game::sandbox::dashboards::table::make_table - Rust

[][src]Function game::sandbox::dashboards::table::make_table

fn make_table(
    ctx: &mut EventCtx,
    app: &App,
    headers: Vec<Widget>,
    rows: Vec<(String, Vec<GeomBatch>)>,
    total_width: f64
) -> Widget
\ No newline at end of file +game::sandbox::dashboards::table::make_table - Rust

[][src]Function game::sandbox::dashboards::table::make_table

fn make_table(
    ctx: &mut EventCtx,
    headers: Vec<Widget>,
    rows: Vec<(String, Vec<GeomBatch>)>,
    total_width: f64
) -> Widget
\ No newline at end of file diff --git a/rustdoc/game/sandbox/dashboards/table/index.html b/rustdoc/game/sandbox/dashboards/table/index.html index 73c8a6bda6..f90f67d4e3 100644 --- a/rustdoc/game/sandbox/dashboards/table/index.html +++ b/rustdoc/game/sandbox/dashboards/table/index.html @@ -2,4 +2,4 @@
Column
Filter
Table

Enums

Col

Constants

ROWS

Functions

-
make_table
\ No newline at end of file +
make_pagination
make_table
\ No newline at end of file diff --git a/rustdoc/game/sandbox/dashboards/table/sidebar-items.js b/rustdoc/game/sandbox/dashboards/table/sidebar-items.js index bf59e96b35..53bc88de9d 100644 --- a/rustdoc/game/sandbox/dashboards/table/sidebar-items.js +++ b/rustdoc/game/sandbox/dashboards/table/sidebar-items.js @@ -1 +1 @@ -initSidebarItems({"constant":[["ROWS",""]],"enum":[["Col",""]],"fn":[["make_table",""]],"struct":[["Column",""],["Filter",""],["Table",""]]}); \ No newline at end of file +initSidebarItems({"constant":[["ROWS",""]],"enum":[["Col",""]],"fn":[["make_pagination",""],["make_table",""]],"struct":[["Column",""],["Filter",""],["Table",""]]}); \ No newline at end of file diff --git a/rustdoc/game/sandbox/dashboards/table/struct.Table.html b/rustdoc/game/sandbox/dashboards/table/struct.Table.html index c9d9a5c66b..23803f5a57 100644 --- a/rustdoc/game/sandbox/dashboards/table/struct.Table.html +++ b/rustdoc/game/sandbox/dashboards/table/struct.Table.html @@ -7,7 +7,7 @@ descending: bool, skip: usize, }

- Fields

data: Vec<T>label_per_row: Box<dyn Fn(&T) -> String>columns: Vec<Column<T>>filter: Filter<T, F>sort_by: Stringdescending: boolskip: usize

Implementations

impl<T, F> Table<T, F>[src]

pub fn new(
    data: Vec<T>,
    label_per_row: Box<dyn Fn(&T) -> String>,
    default_sort_by: &str,
    filter: Filter<T, F>
) -> Table<T, F>
[src]

pub fn column(
    &mut self,
    name: &str,
    render: Box<dyn Fn(&EventCtx, &App, &T) -> GeomBatch>,
    col: Col<T>
)
[src]

pub fn render(&self, ctx: &mut EventCtx, app: &App) -> Widget[src]

pub fn clicked(&mut self, action: &str) -> bool[src]

pub fn panel_changed(&mut self, panel: &Panel)[src]

impl<T: 'static, F> Table<T, F>[src]

pub fn static_col(&mut self, name: &str, to_str: Box<dyn Fn(&T) -> String>)[src]

Auto Trait Implementations

impl<T, F> !RefUnwindSafe for Table<T, F>

impl<T, F> !Send for Table<T, F>

impl<T, F> !Sync for Table<T, F>

impl<T, F> Unpin for Table<T, F> where
    F: Unpin,
    T: Unpin

impl<T, F> !UnwindSafe for Table<T, F>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]