pub struct FullTrackName {
pub namespace: TrackNamespace,
pub track_name: Vec<u8>,
}Expand description
Full Track Name: namespace + track name. Maximum total size: 4096 bytes.
Fields§
§namespace: TrackNamespace§track_name: Vec<u8>Trait Implementations§
Source§impl Clone for FullTrackName
impl Clone for FullTrackName
Source§fn clone(&self) -> FullTrackName
fn clone(&self) -> FullTrackName
Returns a duplicate 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 FullTrackName
impl Debug for FullTrackName
Source§impl PartialEq for FullTrackName
impl PartialEq for FullTrackName
impl Eq for FullTrackName
impl StructuralPartialEq for FullTrackName
Auto Trait Implementations§
impl Freeze for FullTrackName
impl RefUnwindSafe for FullTrackName
impl Send for FullTrackName
impl Sync for FullTrackName
impl Unpin for FullTrackName
impl UnsafeUnpin for FullTrackName
impl UnwindSafe for FullTrackName
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