Struct docx_rust::formatting::Strike
source · pub struct Strike {
pub value: Option<bool>,
}Expand description
Strike
use docx_rust::formatting::*;
let strike = Strike::from(false);
let strike = Strike::from(true);Fields§
§value: Option<bool>Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Strike
impl Send for Strike
impl Sync for Strike
impl Unpin for Strike
impl UnwindSafe for Strike
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