Struct docx_rust::formatting::Italics
source · 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 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