braid-blob 0.1.4

Braid-Blob storage and synchronization service
Documentation
��cargo :     Checking braid-blob v0.1.0 

(C:\Users\isich\braid_rs\crates\braid-blob)

At line:1 char:1

+ cargo check -p braid-blob 2>&1 | 

Out-File -FilePath errors.txt; Get-C ...

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : NotSpecified 

   : (    Checking br...tes\braid-blob):S  

  tring) [], RemoteException

    + FullyQualifiedErrorId : NativeComman 

   dError

 

error[E0107]: missing generics for struct 

`axum::http::Request`

   --> crates\braid-blob\src\http.rs:21:10

    |

 21 |     req: Request,

    |          ^^^^^^^ expected 1 generic 

argument

    |

note: struct defined here, with 1 generic 

parameter: `T`

   --> C:\Users\isich\.cargo\registry\src\i

ndex.crates.io-1949cf8c6b5b557f\http-1.4.0\

src\request.rs:152:12

    |

152 | pub struct Request<T> {

    |            ^^^^^^^ -

help: add missing generic argument

    |

 21 |     req: Request<T>,

    |                 +++



error[E0308]: mismatched types

  --> crates\braid-blob\src\sync.rs:43:25

   |

43 |                 client: 

BraidClient::new(),

   |                         

^^^^^^^^^^^^^^^^^^ expected `BraidClient`, 

found `Result<BraidClient, BraidError>`

   |

   = note: expected struct `BraidClient`

                found enum 

`Result<BraidClient, BraidError>`

help: consider using `Result::expect` to 

unwrap the `Result<BraidClient, 

BraidError>` value, panicking if the value 

is a `Result::Err`

   |

43 |                 client: 

BraidClient::new().expect("REASON"),

   |                                       

    +++++++++++++++++



Some errors have detailed explanations: 

E0107, E0308.

For more information about an error, try 

`rustc --explain E0107`.

error: could not compile `braid-blob` 

(lib) due to 2 previous errors