#[repr(C)]pub struct JanetArray {
pub gc: JanetGCObject,
pub count: i32,
pub capacity: i32,
pub data: *mut Janet,
}Fields§
§gc: JanetGCObject§count: i32§capacity: i32§data: *mut JanetTrait Implementations§
Source§impl Clone for JanetArray
impl Clone for JanetArray
Source§fn clone(&self) -> JanetArray
fn clone(&self) -> JanetArray
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 moreimpl Copy for JanetArray
Auto Trait Implementations§
impl Freeze for JanetArray
impl RefUnwindSafe for JanetArray
impl !Send for JanetArray
impl !Sync for JanetArray
impl Unpin for JanetArray
impl UnwindSafe for JanetArray
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