pub enum RegionSetError {
FileReadError(String),
InvalidPathOrUrl(String),
InvalidBedbaseIdentifier(String),
BedbaseFetchError(String),
RegionParseError(String),
EmptyRegionSet(String),
HttpFeatureDisabled(String),
BigBedError(String),
Io(Error),
}Variants§
FileReadError(String)
InvalidPathOrUrl(String)
InvalidBedbaseIdentifier(String)
BedbaseFetchError(String)
RegionParseError(String)
EmptyRegionSet(String)
HttpFeatureDisabled(String)
BigBedError(String)
Io(Error)
Trait Implementations§
Source§impl Debug for RegionSetError
impl Debug for RegionSetError
Source§impl Display for RegionSetError
impl Display for RegionSetError
Source§impl Error for RegionSetError
impl Error for RegionSetError
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 !RefUnwindSafe for RegionSetError
impl !UnwindSafe for RegionSetError
impl Freeze for RegionSetError
impl Send for RegionSetError
impl Sync for RegionSetError
impl Unpin for RegionSetError
impl UnsafeUnpin for RegionSetError
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