pub struct GroupIDError { /* private fields */ }
Expand description
An error which can be returned when checking for a GroupID
’s validity.
This error is used as an error type for functions which check for GroupID
validity such as GroupID::is_valid_group_id
/
TODO: Potential causes ?
Example
if let Err(e) = GroupID::is_valid_group_id(&"[[no]]") {
println!("Invalid GroupID: {e}");
}
Implementations§
Trait Implementations§
source§impl Clone for GroupIDError
impl Clone for GroupIDError
source§fn clone(&self) -> GroupIDError
fn clone(&self) -> GroupIDError
Returns a copy 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 GroupIDError
impl Debug for GroupIDError
source§impl Display for GroupIDError
impl Display for GroupIDError
source§impl Error for GroupIDError
impl Error for GroupIDError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 PartialEq<GroupIDError> for GroupIDError
impl PartialEq<GroupIDError> for GroupIDError
source§fn eq(&self, other: &GroupIDError) -> bool
fn eq(&self, other: &GroupIDError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for GroupIDError
impl StructuralEq for GroupIDError
impl StructuralPartialEq for GroupIDError
Auto Trait Implementations§
impl RefUnwindSafe for GroupIDError
impl Send for GroupIDError
impl Sync for GroupIDError
impl Unpin for GroupIDError
impl UnwindSafe for GroupIDError
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
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.