type Clonedfn clone_in(&self, a: A) -> Self::Clonedfn try_clone_in(&self, a: A) -> Result<Self::Cloned, TryReserveError>impl<A: AllocRef, B: AllocRef> CloneIn<B> for String<A>[src]type Cloned = String<B>#[must_use = "Cloning is expected to be expensive"]fn clone_in(&self, a: B) -> Self::Cloned[src]fn try_clone_in(&self, a: B) -> Result<Self::Cloned, TryReserveError>[src]impl<T: Clone, A: AllocRef, B: AllocRef> CloneIn<B> for Box<T, A>[src]type Cloned = Box<T, B>fn clone_in(&self, a: B) -> Self::Cloned[src]fn try_clone_in(&self, a: B) -> Result<Self::Cloned, TryReserveError>[src]impl<T: Clone, A: AllocRef, B: AllocRef> CloneIn<B> for Vec<T, A>[src]type Cloned = Vec<T, B>fn clone_in(&self, a: B) -> Self::Cloned[src]fn try_clone_in(&self, a: B) -> Result<Self::Cloned, TryReserveError>[src]