pub struct Cell {Show 27 fields
pub value: String,
pub row: usize,
pub col: usize,
pub style: Style,
pub rowspan: usize,
pub colspan: usize,
pub is_image: bool,
pub image: String,
pub image_id: String,
pub image_from_col: u32,
pub image_from_col_off: usize,
pub image_from_row: u32,
pub image_from_row_off: usize,
pub image_to_col: u32,
pub image_to_col_off: usize,
pub image_to_row: u32,
pub image_to_row_off: usize,
pub image_n: String,
pub image_h: f64,
pub image_w: f64,
pub image_h_w: usize,
pub image_w_w: usize,
pub image_x: f64,
pub image_y: f64,
pub image_x_w: usize,
pub image_y_w: usize,
pub state: u8,
}
Fields§
§value: String
单元格内容
row: usize
行
col: usize
列
style: Style
样式
rowspan: usize
跨行
colspan: usize
跨列
is_image: bool
图像
image: String
§image_id: String
§image_from_col: u32
§image_from_col_off: usize
§image_from_row: u32
§image_from_row_off: usize
§image_to_col: u32
§image_to_col_off: usize
§image_to_row: u32
§image_to_row_off: usize
§image_n: String
§image_h: f64
§image_w: f64
§image_h_w: usize
§image_w_w: usize
§image_x: f64
§image_y: f64
§image_x_w: usize
§image_y_w: usize
§state: u8
状态
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cell
impl RefUnwindSafe for Cell
impl Send for Cell
impl Sync for Cell
impl Unpin for Cell
impl UnwindSafe for Cell
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