[−][src]Struct dbui_service::cache::ConnectionCache
Methods
impl ConnectionCache[src]
pub fn new(log: &Logger) -> ConnectionCache[src]
pub fn conn_list(&self) -> Vec<Uuid>[src]
pub fn channel_list(&self) -> Vec<(String, Vec<Uuid>)>[src]
pub fn add<F>(&mut self, key: &str, id: Uuid, f: Box<dyn SendCallback>)[src]
pub fn remove(&mut self, key: &str, id: Uuid)[src]
pub fn send_connection(&self, id: &Uuid, msg: ResponseMessage)[src]
pub fn send_channel(&self, key: &str, msg: ResponseMessage)[src]
pub fn send_channel_except(
&self,
key: &str,
exclude: Vec<&Uuid>,
msg: ResponseMessage
)[src]
&self,
key: &str,
exclude: Vec<&Uuid>,
msg: ResponseMessage
)
Trait Implementations
Auto Trait Implementations
impl Send for ConnectionCache
impl Sync for ConnectionCache
impl Unpin for ConnectionCache
impl !UnwindSafe for ConnectionCache
impl !RefUnwindSafe for ConnectionCache
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self