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