#[non_exhaustive]pub enum InvalidTabGroupId {}Expand description
Error type for invalid TabGroupId values.
Currently empty — all u32 values are accepted. The #[non_exhaustive]
attribute allows adding validation variants in the future without a
semver-breaking change.
Trait Implementations§
Source§impl Clone for InvalidTabGroupId
impl Clone for InvalidTabGroupId
Source§fn clone(&self) -> InvalidTabGroupId
fn clone(&self) -> InvalidTabGroupId
Returns a duplicate of the value. Read more
1.0.0 · 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 InvalidTabGroupId
impl Debug for InvalidTabGroupId
Source§impl Display for InvalidTabGroupId
impl Display for InvalidTabGroupId
Source§impl Error for InvalidTabGroupId
impl Error for InvalidTabGroupId
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()
Auto Trait Implementations§
impl Freeze for InvalidTabGroupId
impl RefUnwindSafe for InvalidTabGroupId
impl Send for InvalidTabGroupId
impl Sync for InvalidTabGroupId
impl Unpin for InvalidTabGroupId
impl UnsafeUnpin for InvalidTabGroupId
impl UnwindSafe for InvalidTabGroupId
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