mirror of
				https://github.com/johrpan/musicus.git
				synced 2025-10-26 19:57:25 +01:00 
			
		
		
		
	Move crates to toplevel directory
This commit is contained in:
		
							parent
							
								
									d16961efa8
								
							
						
					
					
						commit
						0ffe68e04f
					
				
					 127 changed files with 15 additions and 13 deletions
				
			
		
							
								
								
									
										25
									
								
								backend/src/error.rs
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								backend/src/error.rs
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,25 @@ | |||
| /// An error that can happened within the backend.
 | ||||
| #[derive(thiserror::Error, Debug)] | ||||
| pub enum Error { | ||||
|     #[error(transparent)] | ||||
|     ClientError(#[from] musicus_client::Error), | ||||
| 
 | ||||
|     #[error(transparent)] | ||||
|     DatabaseError(#[from] musicus_database::Error), | ||||
| 
 | ||||
|     #[error("An error happened using the SecretService.")] | ||||
|     SecretServiceError(#[from] secret_service::Error), | ||||
| 
 | ||||
|     #[error("A channel was canceled.")] | ||||
|     ChannelError(#[from] futures_channel::oneshot::Canceled), | ||||
| 
 | ||||
|     #[error("An error happened while decoding to UTF-8.")] | ||||
|     Utf8Error(#[from] std::str::Utf8Error), | ||||
| 
 | ||||
|     #[error("An error happened: {0}")] | ||||
|     Other(&'static str), | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| pub type Result<T> = std::result::Result<T, Error>; | ||||
| 
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Elias Projahn
						Elias Projahn