physx 0.7.0

High-level Rust interface for Nvidia PhysX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Author: Tom Olsson <mail@tomolsson.se>
// Copyright © 2019, Embark Studios, all rights reserved.
// Created: 12 June 2019

#![warn(clippy::all)]
#![warn(rust_2018_idioms)]

/*!

Release trait to make sure our Deref hack calls the right Release
 */

pub trait Releasable {
    fn release(&mut self);
}