pub struct CT_TableBorders {
pub left: Option<CT_LineProperties>,
pub right: Option<CT_LineProperties>,
pub top: Option<CT_LineProperties>,
pub bottom: Option<CT_LineProperties>,
pub inside_horizontal: Option<CT_LineProperties>,
pub inside_vertical: Option<CT_LineProperties>,
pub unsupported: Vec<String>,
/* private fields */
}Expand description
The four renderer-visible table-cell edges.
Fields§
§left: Option<CT_LineProperties>§right: Option<CT_LineProperties>§top: Option<CT_LineProperties>§bottom: Option<CT_LineProperties>§inside_horizontal: Option<CT_LineProperties>§inside_vertical: Option<CT_LineProperties>§unsupported: Vec<String>Trait Implementations§
Source§impl Clone for CT_TableBorders
impl Clone for CT_TableBorders
Source§fn clone(&self) -> CT_TableBorders
fn clone(&self) -> CT_TableBorders
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CT_TableBorders
impl Debug for CT_TableBorders
Source§impl Default for CT_TableBorders
impl Default for CT_TableBorders
Source§fn default() -> CT_TableBorders
fn default() -> CT_TableBorders
Returns the “default value” for a type. Read more
impl Eq for CT_TableBorders
Source§impl PartialEq for CT_TableBorders
impl PartialEq for CT_TableBorders
impl StructuralPartialEq for CT_TableBorders
Auto Trait Implementations§
impl Freeze for CT_TableBorders
impl RefUnwindSafe for CT_TableBorders
impl Send for CT_TableBorders
impl Sync for CT_TableBorders
impl Unpin for CT_TableBorders
impl UnsafeUnpin for CT_TableBorders
impl UnwindSafe for CT_TableBorders
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