#[repr(C)]pub struct CArray<Value> {
pub ptr: SyncPtr<Value>,
pub len: usize,
}
Fields§
§ptr: SyncPtr<Value>
§len: usize
Trait Implementations§
Source§impl<Value: Copy> QuickClone for CArray<Value>
impl<Value: Copy> QuickClone for CArray<Value>
fn quick_clone(&self) -> Self
Auto Trait Implementations§
impl<Value> Freeze for CArray<Value>
impl<Value> RefUnwindSafe for CArray<Value>where
Value: RefUnwindSafe,
impl<Value> Send for CArray<Value>where
Value: Send,
impl<Value> Sync for CArray<Value>where
Value: Sync,
impl<Value> Unpin for CArray<Value>
impl<Value> UnwindSafe for CArray<Value>where
Value: RefUnwindSafe,
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