#[repr(C)]pub struct SyscallResponse<T> {
pub size: usize,
pub request_uuid: Uuid,
pub payload: T,
}Fields§
§size: usize§request_uuid: Uuid§payload: TAuto Trait Implementations§
impl<T> Freeze for SyscallResponse<T>where
T: Freeze,
impl<T> RefUnwindSafe for SyscallResponse<T>where
T: RefUnwindSafe,
impl<T> Send for SyscallResponse<T>where
T: Send,
impl<T> Sync for SyscallResponse<T>where
T: Sync,
impl<T> Unpin for SyscallResponse<T>where
T: Unpin,
impl<T> UnsafeUnpin for SyscallResponse<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for SyscallResponse<T>where
T: UnwindSafe,
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