pub(crate) struct BackendInitError {
pub(crate) platform: &'static str,
pub(crate) backend: &'static str,
pub(crate) message: String,
}Expand description
Payload emitted to the frontend when a native player backend fails to initialize and the app falls back to a no-op backend.
Fields§
§platform: &'static str§backend: &'static str§message: StringTrait Implementations§
Source§impl Clone for BackendInitError
impl Clone for BackendInitError
Source§fn clone(&self) -> BackendInitError
fn clone(&self) -> BackendInitError
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 BackendInitError
impl RefUnwindSafe for BackendInitError
impl Send for BackendInitError
impl Sync for BackendInitError
impl Unpin for BackendInitError
impl UnsafeUnpin for BackendInitError
impl UnwindSafe for BackendInitError
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