[][src]Trait legion::borrow::UnsafeClone

pub trait UnsafeClone {
    unsafe fn clone(&self) -> Self;
}

Type used for allowing unsafe cloning of internal types

Required methods

unsafe fn clone(&self) -> Self

Clone this type unsafely

Safety

Types implementing this trait perform clones under an unsafe context.

Loading content...

Implementations on Foreign Types

impl<A, B> UnsafeClone for (A, B) where
    A: UnsafeClone,
    B: UnsafeClone
[src]

Loading content...

Implementors

impl<'a> UnsafeClone for Exclusive<'a>[src]

impl<'a> UnsafeClone for Shared<'a>[src]

Loading content...