#[repr(C)]pub struct SvgVertex {
pub x: f32,
pub y: f32,
}
Fields§
§x: f32
§y: f32
Trait Implementations§
Source§impl FromIterator<SvgVertex> for SvgVertexVec
impl FromIterator<SvgVertex> for SvgVertexVec
Source§fn from_iter<T>(iter: T) -> SvgVertexVecwhere
T: IntoIterator<Item = SvgVertex>,
fn from_iter<T>(iter: T) -> SvgVertexVecwhere
T: IntoIterator<Item = SvgVertex>,
Creates a value from an iterator. Read more
Source§impl PartialOrd for SvgVertex
impl PartialOrd for SvgVertex
Source§impl VertexLayoutDescription for SvgVertex
impl VertexLayoutDescription for SvgVertex
fn get_description() -> VertexLayout
impl Copy for SvgVertex
impl StructuralPartialEq for SvgVertex
Auto Trait Implementations§
impl Freeze for SvgVertex
impl RefUnwindSafe for SvgVertex
impl Send for SvgVertex
impl Sync for SvgVertex
impl Unpin for SvgVertex
impl UnwindSafe for SvgVertex
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more