pub struct Subscribe {
pub id: u64,
pub path: Path,
pub priority: i8,
pub group_order: GroupOrder,
pub group_expires: Duration,
pub group_min: Option<u64>,
pub group_max: Option<u64>,
}
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
§path: Path
§priority: i8
§group_order: GroupOrder
§group_expires: Duration
§group_min: Option<u64>
§group_max: Option<u64>
Trait 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