pub enum ServerData {
Logprintf = 0,
AmxExports = 16,
CallPublicFs = 17,
CallPublicGm = 18,
}Expand description
Offsets within the ppData table passed to Load(void**).
The server exposes pointers to utility functions (logprintf) and to the
AMX function table at these fixed indices.
Variants§
Trait Implementations§
Source§impl Clone for ServerData
impl Clone for ServerData
Source§fn clone(&self) -> ServerData
fn clone(&self) -> ServerData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ServerData
Source§impl Debug for ServerData
impl Debug for ServerData
Source§impl PartialEq for ServerData
impl PartialEq for ServerData
Source§fn eq(&self, other: &ServerData) -> bool
fn eq(&self, other: &ServerData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServerData
Auto Trait Implementations§
impl Freeze for ServerData
impl RefUnwindSafe for ServerData
impl Send for ServerData
impl Sync for ServerData
impl Unpin for ServerData
impl UnsafeUnpin for ServerData
impl UnwindSafe for ServerData
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