pub struct Channel<T, D> { /* private fields */ }
Expand description
Channel entity.
Entity as a first-class citizen provides access to the entity-specific API.
Trait Implementations§
Source§impl<T, D> Subscribable<T, D> for Channel<T, D>
impl<T, D> Subscribable<T, D> for Channel<T, D>
Source§impl<T, D> Subscriber<T, D> for Channel<T, D>
impl<T, D> Subscriber<T, D> for Channel<T, D>
Source§fn subscription(
&self,
options: Option<Vec<SubscriptionOptions>>,
) -> Subscription<T, D>
fn subscription( &self, options: Option<Vec<SubscriptionOptions>>, ) -> Subscription<T, D>
Creates a new subscription with the specified options. Read more
Auto Trait Implementations§
impl<T, D> Freeze for Channel<T, D>
impl<T, D> !RefUnwindSafe for Channel<T, D>
impl<T, D> Send for Channel<T, D>
impl<T, D> Sync for Channel<T, D>
impl<T, D> Unpin for Channel<T, D>
impl<T, D> !UnwindSafe for Channel<T, D>
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