Expand description
this core components of the contained crate
Modules§
Structs§
- Point
- The
Pointimplementation 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§
- Point
View - An instance of the
Pointimplementation containing owned references to the inner values. - Point
View Mut - An instance of the
Pointimplementation containing mutable references to the inner values. - RawPoint
- A
Pointwhose elements are raw pointers toXandY - RawPoint
Mut - A mutable
Pointwhose elements are raw pointers toXandY - Result
- a type alias for a
Resultconfigured to use the customErrortype.