Struct docx_rust::font_table::FontTable
source · [−]Expand description
Font Table
use docx::font_table::*;
let fonts = FontTable::default()
.push_font("Arial")
.push_font(Font::new("Helvetica").family("swiss"));
Fields
fonts: Vec<Font<'a>>
Implementations
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for FontTable<'a>
impl<'a> Send for FontTable<'a>
impl<'a> Sync for FontTable<'a>
impl<'a> Unpin for FontTable<'a>
impl<'a> UnwindSafe for FontTable<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more