pub struct MetadataNotFound {
pub id: Option<Uuid>,
pub index: Option<i16>,
pub kind: MetaKind,
pub media_group_kind: Option<MediaGroupKind>,
}
Expand description
Metadata associated with this operation could not be found.
Fields§
§id: Option<Uuid>
The (Optional) id of the item.
index: Option<i16>
The (Optional) index of the item.
kind: MetaKind
The item’s kind.
media_group_kind: Option<MediaGroupKind>
The (Optional) media group of the item where the error originated, for metadata types that are split per media group kind.
Trait Implementations§
Source§impl Debug for MetadataNotFound
impl Debug for MetadataNotFound
Source§impl<'de> Deserialize<'de> for MetadataNotFound
impl<'de> Deserialize<'de> for MetadataNotFound
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MetadataNotFound
impl Display for MetadataNotFound
Source§impl Error for MetadataNotFound
impl Error for MetadataNotFound
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for MetadataNotFound
impl RefUnwindSafe for MetadataNotFound
impl Send for MetadataNotFound
impl Sync for MetadataNotFound
impl Unpin for MetadataNotFound
impl UnwindSafe for MetadataNotFound
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