Struct physx::visual_debugger::Pvd

source ·
#[repr(transparent)]
pub struct Pvd { /* private fields */ }
Expand description

A new type wrapper for PxPvd.

Implementations§

source§

impl Pvd

source

pub fn connect( &mut self, transport: &mut PvdTransport, flags: InstrumentationFlags ) -> bool

Connect the visual debugger over the provided transport. Returns true if the connection succeded.

source

pub fn disconnect(&mut self)

Disconnect from the transport.

source

pub fn is_connected(&mut self, use_cached_status: bool) -> bool

Check if the Pvd is connected. The cached status may be up to one frame out of date. When use_cached_status is false, the low-level status is checked which requires locking the network stream.

source

pub fn get_transport(&mut self) -> Option<&mut PvdTransport>

Get the transport connected to the Pvd, if there is one.

Trait Implementations§

source§

impl Class<PxPvd> for Pvd

source§

fn as_ptr(&self) -> *const PxPvd

Returns a raw const pointer to the wrapped type. Retrieving a raw pointer is safe. However, pretty much any use of a raw pointer is unsafe. In particular: this pointer should not be used to construct a second owning wrapper around the pointer.
source§

fn as_mut_ptr(&mut self) -> *mut PxPvd

Returns a raw mut pointer to the wrapped type. Retrieving a raw pointer is safe. However, pretty much any use of a raw pointer is unsafe. In particular: this pointer should not be used to construct a second owning wrapper around the pointer.
source§

impl Drop for Pvd

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Send for Pvd

source§

impl Sync for Pvd

Auto Trait Implementations§

§

impl RefUnwindSafe for Pvd

§

impl Unpin for Pvd

§

impl UnwindSafe for Pvd

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.