Struct avenger_wgpu::marks::symbol::SymbolVertex
source · #[repr(C)]pub struct SymbolVertex {
pub position: [f32; 2],
pub normal: [f32; 2],
pub kind: u32,
pub shape_index: u32,
}Fields§
§position: [f32; 2]§normal: [f32; 2]§kind: u32§shape_index: u32Implementations§
source§impl SymbolVertex
impl SymbolVertex
pub fn desc() -> VertexBufferLayout<'static>
Trait Implementations§
source§impl Clone for SymbolVertex
impl Clone for SymbolVertex
source§fn clone(&self) -> SymbolVertex
fn clone(&self) -> SymbolVertex
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SymbolVertex
impl Debug for SymbolVertex
source§impl FillVertexConstructor<SymbolVertex> for VertexPositions
impl FillVertexConstructor<SymbolVertex> for VertexPositions
fn new_vertex(&mut self, vertex: FillVertex<'_>) -> SymbolVertex
source§impl StrokeVertexConstructor<SymbolVertex> for VertexPositions
impl StrokeVertexConstructor<SymbolVertex> for VertexPositions
fn new_vertex(&mut self, vertex: StrokeVertex<'_, '_>) -> SymbolVertex
impl Copy for SymbolVertex
impl Pod for SymbolVertex
Auto Trait Implementations§
impl RefUnwindSafe for SymbolVertex
impl Send for SymbolVertex
impl Sync for SymbolVertex
impl Unpin for SymbolVertex
impl UnwindSafe for SymbolVertex
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.