pub struct Border {
pub h_radius: f64,
pub v_radius: f64,
pub width: f64,
pub dash: Option<Vec<f64>>,
}Expand description
/Border array [Hradius Vradius Width]. PDF spec also allows a
dash pattern fourth entry; we capture it but only emit when present.
Fields§
§h_radius: f64§v_radius: f64§width: f64§dash: Option<Vec<f64>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Border
impl RefUnwindSafe for Border
impl Send for Border
impl Sync for Border
impl Unpin for Border
impl UnsafeUnpin for Border
impl UnwindSafe for Border
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