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 Freeze for Strike
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