pub struct ValueMut<'a, V>{ /* private fields */ }Expand description
A generic mutable value reference into a buffer.
Implementations§
Source§impl<'a, V: ?Sized + HasDrop> ValueMut<'a, V>
impl<'a, V: ?Sized + HasDrop> ValueMut<'a, V>
Sourcepub fn value_type_id(&self) -> TypeId
pub fn value_type_id(&self) -> TypeId
Get the TypeId of the referenced value.
Sourcepub fn value_alignment(&self) -> usize
pub fn value_alignment(&self) -> usize
Get the alignment of the referenced value.
Sourcepub fn is<T: 'static>(&self) -> bool
pub fn is<T: 'static>(&self) -> bool
Returns true if this referenced value’s type is the same as T.
Sourcepub fn swap<'b>(&mut self, other: &mut ValueMut<'b, V>)
pub fn swap<'b>(&mut self, other: &mut ValueMut<'b, V>)
Swap the values between other and self.
Sourcepub fn assign<B: GetBytesMut + DropAsAligned>(&mut self, value: Value<B, V>)
pub fn assign<B: GetBytesMut + DropAsAligned>(&mut self, value: Value<B, V>)
Moves the given value into self.
Sourcepub fn clone_from_other<'b>(
&mut self,
other: impl Into<ValueRef<'b, V>>,
) -> Result<(), Error>where
V: HasClone + 'b,
pub fn clone_from_other<'b>(
&mut self,
other: impl Into<ValueRef<'b, V>>,
) -> Result<(), Error>where
V: HasClone + 'b,
Clone other into self.
This function will call drop on any values stored in self.
Sourcepub fn clone_value(&self) -> Value<Box<[MaybeUninit<u8>]>, V>
pub fn clone_value(&self) -> Value<Box<[MaybeUninit<u8>]>, V>
Clone the referenced value.
Unlike the Clone trait, this function will produce an owned clone of the value pointed to
by this value reference.
Sourcepub fn clone_small_value(&self) -> Value<MaybeUninit<usize>, V>
pub fn clone_small_value(&self) -> Value<MaybeUninit<usize>, V>
Clone the referenced value.
Unlike the Clone trait, this function will produce an owned clone of the value pointed to
by this value reference.
This version of clone_value tries to fit the underlying value into a usize sized value,
and panics if that fails.
Sourcepub fn downcast<T: 'static>(self) -> Option<&'a mut T>
pub fn downcast<T: 'static>(self) -> Option<&'a mut T>
Downcast this value reference into a borrowed T type. Return None if the downcast fails.
Sourcepub fn upcast<U: ?Sized + HasDrop + From<V>>(self) -> ValueMut<'a, U>where
V: Clone,
pub fn upcast<U: ?Sized + HasDrop + From<V>>(self) -> ValueMut<'a, U>where
V: Clone,
A consuming upcast that carries the lifetime of the underlying value reference.
Sourcepub fn upcast_mut<U: ?Sized + HasDrop + From<V>>(&mut self) -> ValueMut<'_, U>where
V: Clone,
pub fn upcast_mut<U: ?Sized + HasDrop + From<V>>(&mut self) -> ValueMut<'_, U>where
V: Clone,
Create a new mutable value reference upcast from the current one.
pub fn reborrow(&self) -> ValueRef<'_, V>
pub fn reborrow_mut(&mut self) -> ValueMut<'_, V>
Trait Implementations§
impl<'a, V: ?Sized + HasEq + HasDrop> Eq for ValueMut<'a, V>
impl<'a, V: ?Sized + HasSend + HasDrop> Send for ValueMut<'a, V>
impl<'a, V: ?Sized + HasSync + HasDrop> Sync for ValueMut<'a, V>
Auto Trait Implementations§
impl<'a, V> Freeze for ValueMut<'a, V>where
V: ?Sized,
impl<'a, V> RefUnwindSafe for ValueMut<'a, V>where
V: RefUnwindSafe + ?Sized,
impl<'a, V> Unpin for ValueMut<'a, V>where
V: ?Sized,
impl<'a, V> !UnwindSafe for ValueMut<'a, V>
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
Source§impl<T> DebugBytes for Twhere
T: Debug + 'static,
impl<T> DebugBytes for Twhere
T: Debug + 'static,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§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.Source§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.