Enum bones_lib::ecs::prelude::LabledIdParseError
pub enum LabledIdParseError {
InvalidFormat,
UlidDecode(DecodeError),
CreateError(LabeledIdCreateError),
}
Expand description
Errors that can happen while parsing a LabeledId
.
Variants§
InvalidFormat
The ID is in the wrong format.
UlidDecode(DecodeError)
The ULID could not be parsed.
CreateError(LabeledIdCreateError)
Error creating ID
Trait Implementations§
§impl Debug for LabledIdParseError
impl Debug for LabledIdParseError
Auto Trait Implementations§
impl Freeze for LabledIdParseError
impl RefUnwindSafe for LabledIdParseError
impl Send for LabledIdParseError
impl Sync for LabledIdParseError
impl Unpin for LabledIdParseError
impl UnwindSafe for LabledIdParseError
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