Struct mapbox_vector_tile::DrawingCommands [] [src]

pub struct DrawingCommands(pub Vec<DrawingCommand>);

Trait Implementations

impl Debug for DrawingCommands
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DrawingCommands
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for DrawingCommands
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for DrawingCommands
[src]

impl<'a> From<&'a [u32]> for DrawingCommands
[src]

[src]

Performs the conversion.

impl From<Vec<u32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl From<DrawingCommands> for Geometry<i32>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a Point<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl<'a> From<&'a MultiPoint<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl<'a> From<&'a LineString<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl<'a> From<&'a MultiLineString<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl<'a> From<&'a Polygon<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl<'a> From<&'a MultiPolygon<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl<'a> From<&'a Geometry<i32>> for DrawingCommands
[src]

[src]

Performs the conversion.

impl From<DrawingCommands> for Vec<u32>
[src]

[src]

Performs the conversion.

Auto Trait Implementations