Struct mmids_core::workflows::metadata::MetadataEntry
source · pub struct MetadataEntry { /* private fields */ }
Expand description
An individual key/value paired stored as metadata
Implementations
sourceimpl MetadataEntry
impl MetadataEntry
sourcepub fn new(
key: MetadataKey,
value: MetadataValue,
buffer: &mut BytesMut
) -> Result<Self, MetadataEntryError>
pub fn new(
key: MetadataKey,
value: MetadataValue,
buffer: &mut BytesMut
) -> Result<Self, MetadataEntryError>
Creates a new media metadata payload entry for the key and value pair
sourcepub fn key(&self) -> MetadataKey
pub fn key(&self) -> MetadataKey
Retrieves the key from the entry
sourcepub fn value(&self) -> MetadataValue
pub fn value(&self) -> MetadataValue
Retrieves the value from the entry
Trait Implementations
sourceimpl Clone for MetadataEntry
impl Clone for MetadataEntry
sourcefn clone(&self) -> MetadataEntry
fn clone(&self) -> MetadataEntry
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MetadataEntry
impl Debug for MetadataEntry
sourceimpl PartialEq<MetadataEntry> for MetadataEntry
impl PartialEq<MetadataEntry> for MetadataEntry
sourcefn eq(&self, other: &MetadataEntry) -> bool
fn eq(&self, other: &MetadataEntry) -> bool
impl Eq for MetadataEntry
impl StructuralEq for MetadataEntry
impl StructuralPartialEq for MetadataEntry
Auto Trait Implementations
impl RefUnwindSafe for MetadataEntry
impl Send for MetadataEntry
impl Sync for MetadataEntry
impl Unpin for MetadataEntry
impl UnwindSafe for MetadataEntry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
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
. Read moresourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read moresourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresourceimpl<T> DowncastSync for Twhere
T: Any + Send + Sync,
impl<T> DowncastSync for Twhere
T: Any + Send + Sync,
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.