[−][src]Trait samp::cell::repr::AmxCell
AmxCell trait is a core trait of whole SDK. It shows that value can be borrowed (or copied if it's a primitive) from AMX and passed to it.
Required methods
Loading content...Provided methods
Loading content...Implementations on Foreign Types
impl<'_> AmxCell<'_> for bool[src]
impl<'_> AmxCell<'_> for u32[src]
impl<'_> AmxCell<'_> for usize[src]
impl<'a, T> AmxCell<'a> for &'a T where
T: AmxCell<'a>, [src]
T: AmxCell<'a>,
fn as_cell(&self) -> i32[src]
fn from_raw(_amx: &'amx Amx, _cell: i32) -> Result<Self, AmxError> where
Self: 'amx, [src]
Self: 'amx,
impl<'_> AmxCell<'_> for i32[src]
impl<'_> AmxCell<'_> for isize[src]
impl<'_> AmxCell<'_> for u16[src]
impl<'_> AmxCell<'_> for u8[src]
impl<'_> AmxCell<'_> for f32[src]
impl<'_> AmxCell<'_> for i16[src]
impl<'a, T> AmxCell<'a> for &'a mut T where
T: AmxCell<'a>, [src]
T: AmxCell<'a>,
fn as_cell(&self) -> i32[src]
fn from_raw(_amx: &'amx Amx, _cell: i32) -> Result<Self, AmxError> where
Self: 'amx, [src]
Self: 'amx,
impl<'_> AmxCell<'_> for i8[src]
Loading content...
Implementors
impl<'amx> AmxCell<'amx> for AmxString<'amx>[src]
fn from_raw(amx: &'amx Amx, cell: i32) -> Result<AmxString<'amx>, AmxError>[src]
fn as_cell(&self) -> i32[src]
impl<'amx> AmxCell<'amx> for Buffer<'amx>[src]
fn as_cell(&self) -> i32[src]
fn from_raw(_amx: &'amx Amx, _cell: i32) -> Result<Self, AmxError> where
Self: 'amx, [src]
Self: 'amx,
impl<'amx> AmxCell<'amx> for UnsizedBuffer<'amx>[src]
fn from_raw(amx: &'amx Amx, cell: i32) -> Result<UnsizedBuffer<'amx>, AmxError>[src]
fn as_cell(&self) -> i32[src]
impl<'amx, T> AmxCell<'amx> for Ref<'amx, T> where
T: AmxPrimitive, [src]
T: AmxPrimitive,