pub struct TableRowProperty {
pub del: Option<Delete>,
pub ins: Option<Insert>,
/* private fields */
}
Fields§
§del: Option<Delete>
§ins: Option<Insert>
Implementations§
Source§impl TableRowProperty
impl TableRowProperty
pub fn new() -> TableRowProperty
pub fn grid_after(self, after: u32) -> Self
pub fn width_after(self, w: f32) -> Self
pub fn grid_before(self, before: u32) -> Self
pub fn width_before(self, w: f32) -> Self
pub fn row_height(self, h: f32) -> Self
pub fn height_rule(self, r: HeightRule) -> Self
pub fn delete(self, d: Delete) -> Self
pub fn insert(self, i: Insert) -> Self
Trait Implementations§
Source§impl Clone for TableRowProperty
impl Clone for TableRowProperty
Source§fn clone(&self) -> TableRowProperty
fn clone(&self) -> TableRowProperty
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 Debug for TableRowProperty
impl Debug for TableRowProperty
Source§impl Default for TableRowProperty
impl Default for TableRowProperty
Source§fn default() -> TableRowProperty
fn default() -> TableRowProperty
Returns the “default value” for a type. Read more
Source§impl PartialEq for TableRowProperty
impl PartialEq for TableRowProperty
Source§impl Serialize for TableRowProperty
impl Serialize for TableRowProperty
impl StructuralPartialEq for TableRowProperty
Auto Trait Implementations§
impl Freeze for TableRowProperty
impl RefUnwindSafe for TableRowProperty
impl Send for TableRowProperty
impl Sync for TableRowProperty
impl Unpin for TableRowProperty
impl UnwindSafe for TableRowProperty
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