struct LispVecInner {
is_const: bool,
inner: Cell<*const [ObjCell]>,
}
Fields§
§is_const: bool
§inner: Cell<*const [ObjCell]>
Implementations§
Source§impl LispVecInner
impl LispVecInner
Trait Implementations§
Source§impl PartialEq for LispVecInner
impl PartialEq for LispVecInner
impl Eq for LispVecInner
Auto Trait Implementations§
impl !Freeze for LispVecInner
impl !RefUnwindSafe for LispVecInner
impl !Send for LispVecInner
impl !Sync for LispVecInner
impl Unpin for LispVecInner
impl !UnwindSafe for LispVecInner
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.