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<UT> ConvertError<UT> for ServerCommunicationConfigRepositoryError
impl<UT> ConvertError<UT> for ServerCommunicationConfigRepositoryError
fn try_convert_unexpected_callback_error( e: UnexpectedUniFFICallbackError, ) -> Result<Self>
Source§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<UT> Lift<UT> for ServerCommunicationConfigRepositoryError
impl<UT> Lift<UT> for ServerCommunicationConfigRepositoryError
Source§impl<UT> Lower<UT> for ServerCommunicationConfigRepositoryError
impl<UT> Lower<UT> for ServerCommunicationConfigRepositoryError
Source§impl<UT> LowerError<UT> for ServerCommunicationConfigRepositoryError
impl<UT> LowerError<UT> for ServerCommunicationConfigRepositoryError
Source§fn lower_error(obj: Self) -> RustBuffer
fn lower_error(obj: Self) -> RustBuffer
Lower this value for scaffolding function return Read more
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 ==.Source§impl<UT> TypeId<UT> for ServerCommunicationConfigRepositoryError
impl<UT> TypeId<UT> for ServerCommunicationConfigRepositoryError
const TYPE_ID_META: MetadataBuffer
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 UnsafeUnpin 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<T> CompatExt for T
impl<T> CompatExt for T
§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.§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more