pub struct Subscribe {
pub id: u64,
pub broadcast: String,
pub track: String,
pub priority: u8,
}Expand description
Sent by the subscriber to request all future objects for the given track.
Objects will use the provided ID instead of the full track name, to save bytes.
Fields§
§id: u64§broadcast: String§track: String§priority: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for Subscribe
impl RefUnwindSafe for Subscribe
impl Send for Subscribe
impl Sync for Subscribe
impl Unpin for Subscribe
impl UnwindSafe for Subscribe
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