macro_rules! ambassador_impl_ThreadSafeCacheStore {
(body_struct(< $lock:lifetime, >, $ty:ty, $field_ident:tt)) => { ... };
(
body_struct(< $lock:lifetime, >, $ty:ty, ($($ident_owned:tt)*),
($($ident_ref:tt)*), ($($ident_ref_mut:tt)*))
) => { ... };
(check_non_empty($err:literal, $s:ident . $($t:tt)+)) => { ... };
(check_non_empty($err:literal, $s:ident .)) => { ... };
(
body_enum(< $lock:lifetime, >, $ty:ty, ($($other_tys:ty),*),
($($variants:path),+))
) => { ... };
(body_self(< $lock:lifetime, >)) => { ... };
(use_assoc_ty_bounds) => { ... };
}
Expand description
A macro to be used by [ambassador::Delegate
] to delegate ThreadSafeCacheStore