pub enum ServerCommunicationConfigRepositoryError {
GetError(String),
SaveError(String),
}Expand description
Repository errors for configuration storage operations
Variants§
GetError(String)
Error occurred while retrieving configuration
SaveError(String)
Error occurred while saving configuration
Trait Implementations§
Source§impl Clone for ServerCommunicationConfigRepositoryError
impl Clone for ServerCommunicationConfigRepositoryError
Source§fn clone(&self) -> ServerCommunicationConfigRepositoryError
fn clone(&self) -> ServerCommunicationConfigRepositoryError
Returns a duplicate 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 Error for ServerCommunicationConfigRepositoryError
impl Error for ServerCommunicationConfigRepositoryError
1.30.0 · 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 FlatError for ServerCommunicationConfigRepositoryError
impl FlatError for ServerCommunicationConfigRepositoryError
fn error_variant(&self) -> &'static str
Source§impl From<ServerCommunicationConfigRepositoryError> for JsValue
impl From<ServerCommunicationConfigRepositoryError> for JsValue
Source§fn from(error: ServerCommunicationConfigRepositoryError) -> Self
fn from(error: ServerCommunicationConfigRepositoryError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ServerCommunicationConfigRepositoryError
impl PartialEq for ServerCommunicationConfigRepositoryError
Source§fn eq(&self, other: &ServerCommunicationConfigRepositoryError) -> bool
fn eq(&self, other: &ServerCommunicationConfigRepositoryError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ServerCommunicationConfigRepositoryError
impl StructuralPartialEq for ServerCommunicationConfigRepositoryError
Auto Trait Implementations§
impl Freeze for ServerCommunicationConfigRepositoryError
impl RefUnwindSafe for ServerCommunicationConfigRepositoryError
impl Send for ServerCommunicationConfigRepositoryError
impl Sync for ServerCommunicationConfigRepositoryError
impl Unpin for ServerCommunicationConfigRepositoryError
impl UnwindSafe for ServerCommunicationConfigRepositoryError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.