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
Source§fn clone(&self) -> FetchTrack
fn clone(&self) -> FetchTrack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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