pub enum GCArcStorage {
None,
Single(GCArc<OnionObjectCell>),
Multiple(Arc<Vec<GCArc<OnionObjectCell>>>),
}
Expand description
Variants§
Trait Implementations§
Source§impl Clone for GCArcStorage
impl Clone for GCArcStorage
Source§fn clone(&self) -> GCArcStorage
fn clone(&self) -> GCArcStorage
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 moreAuto Trait Implementations§
impl Freeze for GCArcStorage
impl RefUnwindSafe for GCArcStorage
impl Send for GCArcStorage
impl Sync for GCArcStorage
impl Unpin for GCArcStorage
impl UnwindSafe for GCArcStorage
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