struct FetchTrack {
namespace: TrackNamespace,
name: Vec<u8>,
}Expand description
The track a fetch this endpoint made asked for.
A standalone FETCH carries both fields and a Joining Fetch carries neither, so what is kept is the answer rather than the question: whichever way the fetch named its track, this is the track.
Fields§
§namespace: TrackNamespace§name: Vec<u8>Trait Implementations§
Source§impl Clone for FetchTrack
impl Clone for FetchTrack
Auto Trait Implementations§
impl Freeze for FetchTrack
impl RefUnwindSafe for FetchTrack
impl Send for FetchTrack
impl Sync for FetchTrack
impl Unpin for FetchTrack
impl UnsafeUnpin for FetchTrack
impl UnwindSafe for FetchTrack
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