Crate rspace_core

Crate rspace_core 

Source
Expand description

this core components of the contained crate

Modules§

error
this module defines the core error type for the crate
point

Structs§

Point
The Point implementation is designed a generic, 2-dimensional point object used to define coordinates, vectors, or positions in a 2D space.

Enums§

Error
The custom error type for the crate.

Type Aliases§

PointView
An instance of the Point implementation containing owned references to the inner values.
PointViewMut
An instance of the Point implementation containing mutable references to the inner values.
RawPoint
A Point whose elements are raw pointers to X and Y
RawPointMut
A mutable Point whose elements are raw pointers to X and Y
Result
a type alias for a Result configured to use the custom Error type.