pub enum ParseIngestEndpointError {
MissingHost,
InvalidScheme(String),
Io(Error),
}
Variants§
Trait Implementations§
source§impl Debug for ParseIngestEndpointError
impl Debug for ParseIngestEndpointError
source§impl Display for ParseIngestEndpointError
impl Display for ParseIngestEndpointError
source§impl Error for ParseIngestEndpointError
impl Error for ParseIngestEndpointError
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<Error> for ParseIngestEndpointError
impl From<Error> for ParseIngestEndpointError
source§impl From<ParseIngestEndpointError> for IngestClientInitializationError
impl From<ParseIngestEndpointError> for IngestClientInitializationError
source§fn from(source: ParseIngestEndpointError) -> Self
fn from(source: ParseIngestEndpointError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseIngestEndpointError
impl !RefUnwindSafe for ParseIngestEndpointError
impl Send for ParseIngestEndpointError
impl Sync for ParseIngestEndpointError
impl Unpin for ParseIngestEndpointError
impl !UnwindSafe for ParseIngestEndpointError
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