pub struct WarpTransition<M: MapTrait> {
pub new_map: M,
pub dest_warp_id: u8,
pub is_last_map: bool,
}Fields§
§new_map: M§dest_warp_id: u8§is_last_map: boolTrait Implementations§
Source§impl<M: Clone + MapTrait> Clone for WarpTransition<M>
impl<M: Clone + MapTrait> Clone for WarpTransition<M>
Source§fn clone(&self) -> WarpTransition<M>
fn clone(&self) -> WarpTransition<M>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<M: Copy + MapTrait> Copy for WarpTransition<M>
impl<M: Eq + MapTrait> Eq for WarpTransition<M>
impl<M: PartialEq + MapTrait> StructuralPartialEq for WarpTransition<M>
Auto Trait Implementations§
impl<M> Freeze for WarpTransition<M>where
M: Freeze,
impl<M> RefUnwindSafe for WarpTransition<M>where
M: RefUnwindSafe,
impl<M> Send for WarpTransition<M>where
M: Send,
impl<M> Sync for WarpTransition<M>where
M: Sync,
impl<M> Unpin for WarpTransition<M>where
M: Unpin,
impl<M> UnsafeUnpin for WarpTransition<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for WarpTransition<M>where
M: UnwindSafe,
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