pub struct FoldQueryClientHandle { /* private fields */ }Expand description
FFI handle for a FoldQueryClient. Same sync model as
RegistryClientHandle: the inner client lives behind a
RwLock so set_ttl / set_deadline writers serialize with
in-flight ops, and the cache (held by the inner client’s
Arc<RwLock<HashMap<...>>>) survives deadline / TTL changes.
Auto Trait Implementations§
impl !Freeze for FoldQueryClientHandle
impl !RefUnwindSafe for FoldQueryClientHandle
impl Send for FoldQueryClientHandle
impl Sync for FoldQueryClientHandle
impl Unpin for FoldQueryClientHandle
impl UnsafeUnpin for FoldQueryClientHandle
impl !UnwindSafe for FoldQueryClientHandle
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