pub struct FfiCommandResponse { /* private fields */ }Implementations§
Source§impl FfiCommandResponse
impl FfiCommandResponse
pub fn GetErrorMessage(self: &FfiCommandResponse) -> UniquePtr<CxxString> ⓘ
Trait Implementations§
Source§impl CopyNew for FfiCommandResponse
impl CopyNew for FfiCommandResponse
Source§unsafe fn copy_new(
other: &FfiCommandResponse,
this: Pin<&mut MaybeUninit<FfiCommandResponse>>,
)
unsafe fn copy_new( other: &FfiCommandResponse, this: Pin<&mut MaybeUninit<FfiCommandResponse>>, )
Synthesized copy constructor.
Source§impl Drop for FfiCommandResponse
impl Drop for FfiCommandResponse
Source§fn drop(self: &mut FfiCommandResponse)
fn drop(self: &mut FfiCommandResponse)
Synthesized destructor.
Source§impl ExternType for FfiCommandResponse
impl ExternType for FfiCommandResponse
Source§impl MakeCppStorage for FfiCommandResponse
impl MakeCppStorage for FfiCommandResponse
Source§unsafe fn allocate_uninitialized_cpp_storage() -> *mut FfiCommandResponse
unsafe fn allocate_uninitialized_cpp_storage() -> *mut FfiCommandResponse
Allocates heap space for this type in C++ and return a pointer
to that space, but do not initialize that space (i.e. do not
yet call a constructor). Read more
Source§unsafe fn free_uninitialized_cpp_storage(arg0: *mut FfiCommandResponse)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut FfiCommandResponse)
Frees a C++ allocation which has not yet
had a constructor called. Read more
Source§impl MoveNew for FfiCommandResponse
impl MoveNew for FfiCommandResponse
Source§unsafe fn move_new(
other: Pin<MoveRef<'_, FfiCommandResponse>>,
this: Pin<&mut MaybeUninit<FfiCommandResponse>>,
)
unsafe fn move_new( other: Pin<MoveRef<'_, FfiCommandResponse>>, this: Pin<&mut MaybeUninit<FfiCommandResponse>>, )
Synthesized move constructor.
impl UniquePtrTarget for FfiCommandResponse
impl VectorElement for FfiCommandResponse
impl WeakPtrTarget for FfiCommandResponse
Auto Trait Implementations§
impl !Freeze for FfiCommandResponse
impl !RefUnwindSafe for FfiCommandResponse
impl !Send for FfiCommandResponse
impl !Sync for FfiCommandResponse
impl !Unpin for FfiCommandResponse
impl UnsafeUnpin for FfiCommandResponse
impl UnwindSafe for FfiCommandResponse
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