pub enum CowArc<'a, T>where
T: 'static + ?Sized,{
Borrowed(&'a T),
Static(&'static T),
Owned(Arc<T, Global>),
}
Expand description
Much like a Cow
, but owned values are Arc-ed to make clones cheap. This should be used for values that
are cloned for use across threads and change rarely (if ever).
This also makes an opinionated tradeoff by adding a CowArc::Static
and implementing [From<&'static T>
] instead of
[From<'a T>
]. This preserves the static context and prevents conversion to CowArc::Owned
in cases where a reference
is known to be static. This is an optimization that prevents allocations and atomic ref-counting.
This means that static references should prefer From::from
or CowArc::Static
and non-static references must
use CowArc::Borrowed
.
Variants§
Borrowed(&'a T)
A borrowed value
Static(&'static T)
A static value reference. This exists to avoid conversion to CowArc::Owned
in cases where a reference is
known to be static. This is an optimization that prevents allocations and atomic ref-counting.
Owned(Arc<T, Global>)
An owned Arc
-ed value
Implementations§
§impl<'a, T> CowArc<'a, T>where
&'a T: Into<Arc<T, Global>>,
T: ?Sized,
impl<'a, T> CowArc<'a, T>where &'a T: Into<Arc<T, Global>>, T: ?Sized,
pub fn into_owned(self) -> CowArc<'static, T>
pub fn into_owned(self) -> CowArc<'static, T>
Converts this into an “owned” value. If internally a value is borrowed, it will be cloned into an “owned Arc
”.
If it is already a CowArc::Owned
or a CowArc::Static
, it will remain unchanged.
pub fn clone_owned(&self) -> CowArc<'static, T>
pub fn clone_owned(&self) -> CowArc<'static, T>
Clones into an owned [CowArc<'static>
]. If internally a value is borrowed, it will be cloned into an “owned Arc
”.
If it is already a CowArc::Owned
or CowArc::Static
, the value will be cloned.
This is equivalent to .clone().into_owned()
.
Trait Implementations§
§impl<T> From<&'static T> for CowArc<'static, T>where
T: ?Sized,
impl<T> From<&'static T> for CowArc<'static, T>where T: ?Sized,
§fn from(value: &'static T) -> CowArc<'static, T>
fn from(value: &'static T) -> CowArc<'static, T>
§impl<'a, T> Ord for CowArc<'a, T>where
T: Ord + ?Sized,
impl<'a, T> Ord for CowArc<'a, T>where T: Ord + ?Sized,
§impl<'a, T> PartialEq<CowArc<'a, T>> for CowArc<'a, T>where
T: PartialEq<T> + ?Sized,
impl<'a, T> PartialEq<CowArc<'a, T>> for CowArc<'a, T>where T: PartialEq<T> + ?Sized,
§impl<'a, T> PartialOrd<CowArc<'a, T>> for CowArc<'a, T>where
T: PartialOrd<T> + ?Sized,
impl<'a, T> PartialOrd<CowArc<'a, T>> for CowArc<'a, T>where T: PartialOrd<T> + ?Sized,
§fn partial_cmp(&self, other: &CowArc<'a, T>) -> Option<Ordering>
fn partial_cmp(&self, other: &CowArc<'a, T>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl<'a, T> Eq for CowArc<'a, T>where T: PartialEq<T> + ?Sized,
Auto Trait Implementations§
impl<'a, T: ?Sized> RefUnwindSafe for CowArc<'a, T>where T: RefUnwindSafe,
impl<'a, T: ?Sized> Send for CowArc<'a, T>where T: Send + Sync,
impl<'a, T: ?Sized> Sync for CowArc<'a, T>where T: Send + Sync,
impl<'a, T: ?Sized> Unpin for CowArc<'a, T>
impl<'a, T: ?Sized> UnwindSafe for CowArc<'a, T>where T: RefUnwindSafe,
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given World
.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.