Enum matrix_sdk::ClientBuildError
source · pub enum ClientBuildError {
MissingHomeserver,
InvalidServerName,
AutoDiscovery(FromHttpResponseError<RumaApiError>),
SlidingSyncVersion(VersionBuilderError),
Url(ParseError),
Http(HttpError),
SqliteStore(OpenStoreError),
}
Expand description
Errors that can happen in ClientBuilder::build
.
Variants§
MissingHomeserver
No homeserver or user ID was configured
InvalidServerName
The supplied server name was invalid.
AutoDiscovery(FromHttpResponseError<RumaApiError>)
Error looking up the .well-known endpoint on auto-discovery
SlidingSyncVersion(VersionBuilderError)
Error when building the sliding sync version.
Url(ParseError)
An error encountered when trying to parse the homeserver url.
Http(HttpError)
Error doing an HTTP request.
SqliteStore(OpenStoreError)
Error opening the sqlite store.
Trait Implementations§
source§impl Debug for ClientBuildError
impl Debug for ClientBuildError
source§impl Display for ClientBuildError
impl Display for ClientBuildError
source§impl Error for ClientBuildError
impl Error for ClientBuildError
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 From<HttpError> for ClientBuildError
impl From<HttpError> for ClientBuildError
source§impl From<OpenStoreError> for ClientBuildError
impl From<OpenStoreError> for ClientBuildError
source§fn from(source: OpenStoreError) -> Self
fn from(source: OpenStoreError) -> Self
Converts to this type from the input type.
source§impl From<ParseError> for ClientBuildError
impl From<ParseError> for ClientBuildError
source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
source§impl From<VersionBuilderError> for ClientBuildError
impl From<VersionBuilderError> for ClientBuildError
source§fn from(source: VersionBuilderError) -> Self
fn from(source: VersionBuilderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for ClientBuildError
impl !RefUnwindSafe for ClientBuildError
impl Send for ClientBuildError
impl Sync for ClientBuildError
impl Unpin for ClientBuildError
impl !UnwindSafe for ClientBuildError
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
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more