pub struct TrackStatus {
pub track_namespace: String,
pub track_name: String,
pub status_code: TrackStatusCode,
pub last_group_id: u64,
pub last_object_id: u64,
}
Fields§
§track_namespace: String
Track Namespace
track_name: String
Track Name
status_code: TrackStatusCode
Status Code
last_group_id: u64
Last Group ID
last_object_id: u64
Last Object ID
Trait Implementations§
Source§impl Clone for TrackStatus
impl Clone for TrackStatus
Source§fn clone(&self) -> TrackStatus
fn clone(&self) -> TrackStatus
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TrackStatus
impl Debug for TrackStatus
Source§impl Decode for TrackStatus
impl Decode for TrackStatus
Source§impl Encode for TrackStatus
impl Encode for TrackStatus
Source§impl From<TrackStatus> for Message
impl From<TrackStatus> for Message
Source§fn from(m: TrackStatus) -> Self
fn from(m: TrackStatus) -> Self
Converts to this type from the input type.
Source§impl From<TrackStatus> for Publisher
impl From<TrackStatus> for Publisher
Source§fn from(msg: TrackStatus) -> Self
fn from(msg: TrackStatus) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TrackStatus
impl RefUnwindSafe for TrackStatus
impl Send for TrackStatus
impl Sync for TrackStatus
impl Unpin for TrackStatus
impl UnwindSafe for TrackStatus
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