Struct libil2cpp::raw::Il2CppSocketAsyncResult
source · [−]#[repr(C)]pub struct Il2CppSocketAsyncResult {Show 19 fields
pub base: Il2CppIOAsyncResult,
pub socket: *mut Il2CppObject,
pub operation: i32,
pub delayedException: *mut Il2CppException,
pub endPoint: *mut Il2CppObject,
pub buffer: *mut Il2CppArray,
pub offset: i32,
pub size: i32,
pub socket_flags: i32,
pub acceptSocket: *mut Il2CppObject,
pub addresses: *mut Il2CppArray,
pub port: i32,
pub buffers: *mut Il2CppObject,
pub reuseSocket: u8,
pub currentAddress: i32,
pub acceptedSocket: *mut Il2CppObject,
pub total: i32,
pub error: i32,
pub endCalled: i32,
}
Expand description
Corresponds to Mono’s internal System.Net.Sockets.Socket.SocketAsyncResult class. Has no relation to Il2CppAsyncResult.
Fields
base: Il2CppIOAsyncResult
socket: *mut Il2CppObject
operation: i32
delayedException: *mut Il2CppException
endPoint: *mut Il2CppObject
buffer: *mut Il2CppArray
offset: i32
size: i32
socket_flags: i32
acceptSocket: *mut Il2CppObject
addresses: *mut Il2CppArray
port: i32
buffers: *mut Il2CppObject
reuseSocket: u8
currentAddress: i32
acceptedSocket: *mut Il2CppObject
total: i32
error: i32
endCalled: i32
Trait Implementations
sourceimpl Clone for Il2CppSocketAsyncResult
impl Clone for Il2CppSocketAsyncResult
sourcefn clone(&self) -> Il2CppSocketAsyncResult
fn clone(&self) -> Il2CppSocketAsyncResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for Il2CppSocketAsyncResult
Auto Trait Implementations
impl RefUnwindSafe for Il2CppSocketAsyncResult
impl !Send for Il2CppSocketAsyncResult
impl !Sync for Il2CppSocketAsyncResult
impl Unpin for Il2CppSocketAsyncResult
impl UnwindSafe for Il2CppSocketAsyncResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more