pub struct BbtRpcClient {
client: Client,
url: String,
next_id: Cell<u64>,
}Expand description
Blocking client for BBT JSON-RPC API.
Uses a persistent reqwest::blocking::Client to reuse TCP connections.
Only instantiated when a BibTeX/bibliography tool is called.
Fields§
§client: Client§url: String§next_id: Cell<u64>Implementations§
Auto Trait Implementations§
impl !Freeze for BbtRpcClient
impl !RefUnwindSafe for BbtRpcClient
impl Send for BbtRpcClient
impl !Sync for BbtRpcClient
impl Unpin for BbtRpcClient
impl !UnwindSafe for BbtRpcClient
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