pub struct PlaybackSourceAlternative { /* private fields */ }Expand description
One validated URL-addressable Playback Source alternative.
Implementations§
Source§impl PlaybackSourceAlternative
impl PlaybackSourceAlternative
Sourcepub fn new(url: impl Into<String>) -> Result<Self, AudioError>
pub fn new(url: impl Into<String>) -> Result<Self, AudioError>
Validate a browser-resolvable URL reference.
Relative references are accepted. Validation does not claim that the resource exists or that the browser can decode it.
Sourcepub fn with_media_type(
self,
media_type: impl Into<String>,
) -> Result<Self, AudioError>
pub fn with_media_type( self, media_type: impl Into<String>, ) -> Result<Self, AudioError>
Add an advisory media-type hint.
pub fn url(&self) -> &str
pub fn media_type(&self) -> Option<&str>
Sourcepub fn with_cross_origin(self, cross_origin: PlaybackSourceCrossOrigin) -> Self
pub fn with_cross_origin(self, cross_origin: PlaybackSourceCrossOrigin) -> Self
Configure how the browser requests this cross-origin alternative.
Alternatives without a policy remain direct-only. Anonymous CORS is required before a URL alternative can be attached to a Playback graph.
pub fn cross_origin(&self) -> Option<PlaybackSourceCrossOrigin>
Sourcepub fn is_graph_eligible(&self) -> bool
pub fn is_graph_eligible(&self) -> bool
Whether this alternative declares the anonymous-CORS intent required for graph-backed Playback.
Trait Implementations§
Source§impl Clone for PlaybackSourceAlternative
impl Clone for PlaybackSourceAlternative
Source§fn clone(&self) -> PlaybackSourceAlternative
fn clone(&self) -> PlaybackSourceAlternative
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 moreSource§impl Debug for PlaybackSourceAlternative
impl Debug for PlaybackSourceAlternative
impl Eq for PlaybackSourceAlternative
impl StructuralPartialEq for PlaybackSourceAlternative
Auto Trait Implementations§
impl Freeze for PlaybackSourceAlternative
impl RefUnwindSafe for PlaybackSourceAlternative
impl Send for PlaybackSourceAlternative
impl Sync for PlaybackSourceAlternative
impl Unpin for PlaybackSourceAlternative
impl UnsafeUnpin for PlaybackSourceAlternative
impl UnwindSafe for PlaybackSourceAlternative
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DependencyElement for T
Source§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
Source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
Source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
Source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
Source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
Source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.