[][src]Struct hl_capture::cvar::cvar_t

#[repr(C)]
pub struct cvar_t {
    name: *const c_char,
    string: *mut c_char,
    flags: c_int,
    value: c_float,
    next: *mut cvar_t,
}

The engine CVar type.

Fields

name: *const c_charstring: *mut c_charflags: c_intvalue: c_floatnext: *mut cvar_t

Methods

impl cvar_t[src]

pub fn string_is_non_null(&self) -> bool[src]

Auto Trait Implementations

impl Unpin for cvar_t

impl !Sync for cvar_t

impl !Send for cvar_t

impl RefUnwindSafe for cvar_t

impl UnwindSafe for cvar_t

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]