pub struct CacheApplyItem {
pub id: String,
pub status: &'static str,
pub error: Option<CacheItemError>,
}Expand description
Per-operation entry inside CacheApplyPayload::items.
Fields§
§id: StringStable identifier for the operation. Currently the cached subtitle source path (the most stable handle the cache exposes).
status: &'static str"ok" or "error".
error: Option<CacheItemError>Populated only when status == "error".
Trait Implementations§
Source§impl Debug for CacheApplyItem
impl Debug for CacheApplyItem
Auto Trait Implementations§
impl Freeze for CacheApplyItem
impl RefUnwindSafe for CacheApplyItem
impl Send for CacheApplyItem
impl Sync for CacheApplyItem
impl Unpin for CacheApplyItem
impl UnsafeUnpin for CacheApplyItem
impl UnwindSafe for CacheApplyItem
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