BasicVertexProps

Trait BasicVertexProps 

Source
pub trait BasicVertexProps:
    WithVertexProp<bool>
    + WithVertexProp<char>
    + WithVertexProp<i8>
    + WithVertexProp<i16>
    + WithVertexProp<i32>
    + WithVertexProp<i64>
    + WithVertexProp<isize>
    + WithVertexProp<u8>
    + WithVertexProp<u16>
    + WithVertexProp<u32>
    + WithVertexProp<u64>
    + WithVertexProp<usize>
    + WithVertexProp<f32>
    + WithVertexProp<f64>
    + WithVertexProp<&'static str>
    + WithVertexProp<String>
    + WithVertexProp<Color>
    + WithVertexProp<Vertex<Self>>
    + WithVertexProp<OptionVertex<Self>>
    + WithVertexProp<Vec<bool>>
    + WithVertexProp<Vec<char>>
    + WithVertexProp<Vec<i8>>
    + WithVertexProp<Vec<i16>>
    + WithVertexProp<Vec<i32>>
    + WithVertexProp<Vec<i64>>
    + WithVertexProp<Vec<isize>>
    + WithVertexProp<Vec<u8>>
    + WithVertexProp<Vec<u16>>
    + WithVertexProp<Vec<u32>>
    + WithVertexProp<Vec<u64>>
    + WithVertexProp<Vec<usize>>
    + WithVertexProp<Vec<f32>>
    + WithVertexProp<Vec<f64>>
    + WithVertexProp<Vec<&'static str>>
    + WithVertexProp<Vec<String>>
    + WithVertexProp<Vec<Color>>
    + WithVertexProp<Vec<Vertex<Self>>>
    + WithVertexProp<Vec<OptionVertex<Self>>> { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a, G: BasicVertexProps> BasicVertexProps for &'a G

Implementors§