pub struct OverconstrainedError {
pub constraint: MediaTrackProperty,
pub message: Option<String>,
}
Expand description
An error indicating one or more over-constrained settings.
Fields§
§constraint: MediaTrackProperty
The offending constraint’s name.
message: Option<String>
An error message, or None
if exposure-mode was Protected
.
Trait Implementations§
Source§impl Clone for OverconstrainedError
impl Clone for OverconstrainedError
Source§fn clone(&self) -> OverconstrainedError
fn clone(&self) -> OverconstrainedError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OverconstrainedError
impl Debug for OverconstrainedError
Source§impl Default for OverconstrainedError
impl Default for OverconstrainedError
Source§impl Display for OverconstrainedError
impl Display for OverconstrainedError
Source§impl Error for OverconstrainedError
impl Error for OverconstrainedError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<OverconstrainedError> for SelectSettingsError
impl From<OverconstrainedError> for SelectSettingsError
Source§fn from(error: OverconstrainedError) -> Self
fn from(error: OverconstrainedError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OverconstrainedError
impl PartialEq for OverconstrainedError
impl Eq for OverconstrainedError
impl StructuralPartialEq for OverconstrainedError
Auto Trait Implementations§
impl Freeze for OverconstrainedError
impl RefUnwindSafe for OverconstrainedError
impl Send for OverconstrainedError
impl Sync for OverconstrainedError
impl Unpin for OverconstrainedError
impl UnwindSafe for OverconstrainedError
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.