Struct docx_rs::TableRowProperty
source · [−]pub struct TableRowProperty {
pub del: Option<Delete>,
pub ins: Option<Insert>,
/* private fields */
}
Fields
del: Option<Delete>
ins: Option<Insert>
Implementations
sourceimpl 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
sourceimpl Clone for TableRowProperty
impl Clone for TableRowProperty
sourcefn clone(&self) -> TableRowProperty
fn clone(&self) -> TableRowProperty
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TableRowProperty
impl Debug for TableRowProperty
sourceimpl Default for TableRowProperty
impl Default for TableRowProperty
sourceimpl PartialEq<TableRowProperty> for TableRowProperty
impl PartialEq<TableRowProperty> for TableRowProperty
sourcefn eq(&self, other: &TableRowProperty) -> bool
fn eq(&self, other: &TableRowProperty) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for TableRowProperty
impl Serialize for TableRowProperty
impl StructuralPartialEq for TableRowProperty
Auto Trait Implementations
impl RefUnwindSafe for TableRowProperty
impl Send for TableRowProperty
impl Sync for TableRowProperty
impl Unpin for TableRowProperty
impl UnwindSafe for TableRowProperty
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more