pub struct RudaZipExpand<I: RudaType, J: RudaType> {
pub first: <I as RudaType>::ExpandType,
pub second: <J as RudaType>::ExpandType,
}Fields§
§first: <I as RudaType>::ExpandType§second: <J as RudaType>::ExpandTypeImplementations§
Source§impl<I: RudaType, J: RudaType> RudaZipExpand<I, J>
impl<I: RudaType, J: RudaType> RudaZipExpand<I, J>
pub fn __expand_clone_method(&self, _scope: &mut Scope) -> Self
Trait Implementations§
Source§impl<I: RudaType, J: RudaType> RudaDebug for RudaZipExpand<I, J>
impl<I: RudaType, J: RudaType> RudaDebug for RudaZipExpand<I, J>
Source§fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
Set the debug name of this type’s expansion. Should do nothing for types that don’t appear
at runtime
Source§impl<A: RudaType, B: RudaType, I: RudaRead<A>, J: RudaRead<B>> RudaReadExpand<RudaPair<A, B>> for RudaZipExpand<I, J>
impl<A: RudaType, B: RudaType, I: RudaRead<A>, J: RudaRead<B>> RudaReadExpand<RudaPair<A, B>> for RudaZipExpand<I, J>
fn __expand_read_method( self, scope: &mut Scope, index: <usize as RudaType>::ExpandType, ) -> <RudaPair<A, B> as RudaType>::ExpandType
Auto Trait Implementations§
impl<I, J> Freeze for RudaZipExpand<I, J>
impl<I, J> RefUnwindSafe for RudaZipExpand<I, J>
impl<I, J> Send for RudaZipExpand<I, J>
impl<I, J> Sync for RudaZipExpand<I, J>
impl<I, J> Unpin for RudaZipExpand<I, J>
impl<I, J> UnsafeUnpin for RudaZipExpand<I, J>
impl<I, J> UnwindSafe for RudaZipExpand<I, J>
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