pub struct TableBorders<'a> {
pub top: Option<TopBorder<'a>>,
pub left: Option<LeftBorder<'a>>,
pub bottom: Option<BottomBorder<'a>>,
pub right: Option<RightBorder<'a>>,
pub inside_horizon: Option<InsideHorizonBorder<'a>>,
pub inside_vertical: Option<InsideVerticalBorder<'a>>,
}
Fields§
§top: Option<TopBorder<'a>>
§left: Option<LeftBorder<'a>>
§bottom: Option<BottomBorder<'a>>
§right: Option<RightBorder<'a>>
§inside_horizon: Option<InsideHorizonBorder<'a>>
§inside_vertical: Option<InsideVerticalBorder<'a>>
Implementations§
Trait Implementations§
Source§impl<'a> Clone for TableBorders<'a>
impl<'a> Clone for TableBorders<'a>
Source§fn clone(&self) -> TableBorders<'a>
fn clone(&self) -> TableBorders<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for TableBorders<'a>
impl<'a> Debug for TableBorders<'a>
Source§impl<'a> Default for TableBorders<'a>
impl<'a> Default for TableBorders<'a>
Source§fn default() -> TableBorders<'a>
fn default() -> TableBorders<'a>
Returns the “default value” for a type. Read more
Source§impl<'__input: 'a, 'a> XmlRead<'__input> for TableBorders<'a>
impl<'__input: 'a, 'a> XmlRead<'__input> for TableBorders<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableBorders<'a>
impl<'a> RefUnwindSafe for TableBorders<'a>
impl<'a> Send for TableBorders<'a>
impl<'a> Sync for TableBorders<'a>
impl<'a> Unpin for TableBorders<'a>
impl<'a> UnwindSafe for TableBorders<'a>
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