pub struct RynaPointer {
pub ptr: *const c_void,
}Fields§
§ptr: *const c_voidImplementations§
Source§impl RynaPointer
impl RynaPointer
pub fn new(ptr: *const c_void) -> RynaPointer
Trait Implementations§
Source§impl Clone for RynaPointer
impl Clone for RynaPointer
Source§fn clone(&self) -> RynaPointer
fn clone(&self) -> RynaPointer
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RynaPointer
impl Debug for RynaPointer
Source§impl Deref<RynaPointer> for ObjectBlock
impl Deref<RynaPointer> for ObjectBlock
fn deref(&self) -> &mut RynaPointer
Source§impl Get<RynaPointer> for ObjectBlock
impl Get<RynaPointer> for ObjectBlock
fn get(&self) -> &RynaPointer
Source§impl GetMut<RynaPointer> for ObjectBlock
impl GetMut<RynaPointer> for ObjectBlock
fn get(&mut self) -> &mut RynaPointer
Source§impl PartialEq for RynaPointer
impl PartialEq for RynaPointer
Source§impl RynaData for RynaPointer
impl RynaData for RynaPointer
fn data(self) -> ObjectBlock
impl StructuralPartialEq for RynaPointer
Auto Trait Implementations§
impl Freeze for RynaPointer
impl RefUnwindSafe for RynaPointer
impl !Send for RynaPointer
impl !Sync for RynaPointer
impl Unpin for RynaPointer
impl UnwindSafe for RynaPointer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more