pub struct SvgOptions {
pub width: f64,
pub title: String,
pub subtitle: String,
pub footer_left: String,
pub footer_right: String,
pub accent: String,
pub by_affiliation: bool,
pub theme: Theme,
pub releases: Vec<Release>,
}Fields§
§width: f64§title: String§subtitle: String§accent: String§by_affiliation: boolEach row is a whole affiliation rather than one person.
theme: ThemeThe theme to render in.
releases: Vec<Release>Tagged releases to mark with vertical lines (Wikipedia skin only).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SvgOptions
impl RefUnwindSafe for SvgOptions
impl Send for SvgOptions
impl Sync for SvgOptions
impl Unpin for SvgOptions
impl UnsafeUnpin for SvgOptions
impl UnwindSafe for SvgOptions
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