Struct scribl_curves::StrokeRef[][src]

pub struct StrokeRef<'a> {
    pub elements: &'a [PathEl],
    pub times: &'a [Time],
    pub style: StrokeStyle,
}

A single continuous stroke in a StrokeSeq, with borrowed data.

The strokes of a curve can be obtained from [Curve::strokes].

Fields

elements: &'a [PathEl]

The elements of this stroke. This will always start with a PathEl::MoveTo, and it will be followed only by PathEl::CurveTos.

times: &'a [Time]

The times at which the elements were drawn. This slice has the same length as elements.

style: StrokeStyle

The style for drawing this stroke.

Implementations

impl<'a> StrokeRef<'a>[src]

pub fn changes_bbox(&self, start_time: Time, end_time: Time) -> Rect[src]

Returns a bounding box everything that is drawn between start_time and end_time, inclusive.

Trait Implementations

impl<'a> Serialize for StrokeRef<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for StrokeRef<'a>[src]

impl<'a> Send for StrokeRef<'a>[src]

impl<'a> Sync for StrokeRef<'a>[src]

impl<'a> Unpin for StrokeRef<'a>[src]

impl<'a> UnwindSafe for StrokeRef<'a>[src]

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> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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.