pub struct Cell {Show 26 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_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_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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more