[][src]Struct bevy_lyon::shapes::FillQuad

pub struct FillQuad<'a> { /* fields omitted */ }

Trait Implementations

impl<'a> Debug for FillQuad<'a>[src]

impl<'a> Default for FillQuad<'a>[src]

fn default() -> Self[src]

Return FillQuad { points: [math :: point(0.0, 0.0), math :: point(0.0, 25.0), math :: point(25.0, 25.0), math :: point(25.0, 0.0)], options: & tess :: FillOptions :: DEFAULT }

impl<'_> LyonShapeBuilder for FillQuad<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for FillQuad<'a>

impl<'a> Send for FillQuad<'a>

impl<'a> Sync for FillQuad<'a>

impl<'a> Unpin for FillQuad<'a>

impl<'a> UnwindSafe for FillQuad<'a>

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

impl<T> FromResources for T where
    T: Default

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

impl<F> LyonShapeBuilder for F where
    F: FnOnce(&mut BuffersBuilder<'_, BevyVertex, u32, BevyVertexConstructor>), 
[src]

impl<T> Resource for T where
    T: 'static + Send + Sync

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,