pub struct FlushCacheResult {
pub successful: Vec<String>,
pub failed: Vec<(String, String)>,
pub total_workers: usize,
pub http_workers: usize,
pub message: String,
}Expand description
Result from flush cache operations across workers
Fields§
§successful: Vec<String>URLs of workers where cache flush succeeded
failed: Vec<(String, String)>URLs and error messages for workers where cache flush failed
total_workers: usizeTotal number of workers attempted
http_workers: usizeNumber of HTTP workers (gRPC workers don’t support flush cache)
message: StringHuman-readable summary message
Trait Implementations§
Source§impl Clone for FlushCacheResult
impl Clone for FlushCacheResult
Source§fn clone(&self) -> FlushCacheResult
fn clone(&self) -> FlushCacheResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FlushCacheResult
impl Debug for FlushCacheResult
Source§impl<'de> Deserialize<'de> for FlushCacheResult
impl<'de> Deserialize<'de> for FlushCacheResult
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
Auto Trait Implementations§
impl Freeze for FlushCacheResult
impl RefUnwindSafe for FlushCacheResult
impl Send for FlushCacheResult
impl Sync for FlushCacheResult
impl Unpin for FlushCacheResult
impl UnwindSafe for FlushCacheResult
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