pub struct PropertyEntryMut<'p> {
pub meta: &'p mut Property,
pub data: &'p mut Vec<u8>,
}
Expand description
Property entry (mutable).
Fields§
§meta: &'p mut Property
Property metadata (mutable).
data: &'p mut Vec<u8>
Property data (mutable).
Implementations§
source§impl<'p> PropertyEntryMut<'p>
impl<'p> PropertyEntryMut<'p>
Short named mutators
source§impl<'p> PropertyEntryMut<'p>
impl<'p> PropertyEntryMut<'p>
Long named mutators
Trait Implementations§
source§impl<'p> AsRef<&'p mut Property> for PropertyEntryMut<'p>
impl<'p> AsRef<&'p mut Property> for PropertyEntryMut<'p>
source§impl<'p> Debug for PropertyEntryMut<'p>
impl<'p> Debug for PropertyEntryMut<'p>
source§impl<'p> Hash for PropertyEntryMut<'p>
impl<'p> Hash for PropertyEntryMut<'p>
source§impl<'p> PartialEq for PropertyEntryMut<'p>
impl<'p> PartialEq for PropertyEntryMut<'p>
impl<'p> Eq for PropertyEntryMut<'p>
impl<'p> StructuralPartialEq for PropertyEntryMut<'p>
Auto Trait Implementations§
impl<'p> Freeze for PropertyEntryMut<'p>
impl<'p> RefUnwindSafe for PropertyEntryMut<'p>
impl<'p> Send for PropertyEntryMut<'p>
impl<'p> Sync for PropertyEntryMut<'p>
impl<'p> Unpin for PropertyEntryMut<'p>
impl<'p> !UnwindSafe for PropertyEntryMut<'p>
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more