blob: f5e7e0cbc4ad29046a704110a606713bfaf1ac74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct Table;
impl Table {
pub fn new(_output: &dyn std::any::Any) -> Self {
todo!()
}
pub fn set_headers(&mut self, _headers: Vec<PhpMixed>) -> &mut Self {
todo!()
}
pub fn set_rows(&mut self, _rows: Vec<PhpMixed>) -> &mut Self {
todo!()
}
pub fn add_row(&mut self, _row: PhpMixed) -> &mut Self {
todo!()
}
pub fn render(&mut self) {
todo!()
}
}
|