Struct zeno::Scratch[][src]

pub struct Scratch { /* fields omitted */ }

Scratch memory for reusable heap allocations.

Implementations

impl Scratch[src]

pub fn new() -> Self[src]

Creates a new scratch memory context.

pub fn apply<'a>(
    &mut self,
    data: impl PathData,
    style: impl Into<Style<'a>>,
    transform: Option<Transform>,
    sink: &mut impl PathBuilder
) -> Fill
[src]

Applies the style and transform to the path and emits the result to the specified sink.

pub fn bounds<'a>(
    &mut self,
    data: impl PathData,
    style: impl Into<Style<'a>>,
    transform: Option<Transform>
) -> Bounds
[src]

Computes the bounding box of the path.

Trait Implementations

impl Default for Scratch[src]

Auto Trait Implementations

impl RefUnwindSafe for Scratch

impl Send for Scratch

impl Sync for Scratch

impl Unpin for Scratch

impl UnwindSafe for Scratch

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.