pub struct RynaArrayIt {
pub pos: usize,
pub block: Rc<MutCell<ObjectBlock>>,
pub it_type: Box<Type>,
pub c_type: Box<Type>,
}Fields§
§pos: usize§block: Rc<MutCell<ObjectBlock>>§it_type: Box<Type>§c_type: Box<Type>Implementations§
Source§impl RynaArrayIt
impl RynaArrayIt
pub fn get_container_ref(&self) -> Object
Trait Implementations§
Source§impl Clone for RynaArrayIt
impl Clone for RynaArrayIt
Source§fn clone(&self) -> RynaArrayIt
fn clone(&self) -> RynaArrayIt
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 RynaArrayIt
impl Debug for RynaArrayIt
Source§impl Deref<RynaArrayIt> for ObjectBlock
impl Deref<RynaArrayIt> for ObjectBlock
fn deref(&self) -> &mut RynaArrayIt
Source§impl Get<RynaArrayIt> for ObjectBlock
impl Get<RynaArrayIt> for ObjectBlock
fn get(&self) -> &RynaArrayIt
Source§impl GetMut<RynaArrayIt> for ObjectBlock
impl GetMut<RynaArrayIt> for ObjectBlock
fn get(&mut self) -> &mut RynaArrayIt
Source§impl PartialEq for RynaArrayIt
impl PartialEq for RynaArrayIt
Source§impl RynaData for RynaArrayIt
impl RynaData for RynaArrayIt
fn data(self) -> ObjectBlock
impl StructuralPartialEq for RynaArrayIt
Auto Trait Implementations§
impl Freeze for RynaArrayIt
impl !RefUnwindSafe for RynaArrayIt
impl !Send for RynaArrayIt
impl !Sync for RynaArrayIt
impl Unpin for RynaArrayIt
impl !UnwindSafe for RynaArrayIt
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