pub struct GitPoint {
pub x: Option<f32>,
pub y: Option<f32>,
pub z: Option<f32>,
}Expand description
A geometry point used by triggers or encounters.
§Examples
let point = nwnrs_git::GitPoint::default();
assert!(point.x.is_none());Fields§
§x: Option<f32>Point X coordinate.
y: Option<f32>Point Y coordinate.
z: Option<f32>Point Z coordinate.
Trait Implementations§
impl StructuralPartialEq for GitPoint
Auto Trait Implementations§
impl Freeze for GitPoint
impl RefUnwindSafe for GitPoint
impl Send for GitPoint
impl Sync for GitPoint
impl Unpin for GitPoint
impl UnsafeUnpin for GitPoint
impl UnwindSafe for GitPoint
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