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