We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10585e7 commit 8cf4c7dCopy full SHA for 8cf4c7d
bindings/matrix-sdk-ffi/src/client.rs
@@ -241,8 +241,8 @@ pub struct AbstractProgress {
241
pub total: u64,
242
}
243
244
-impl From<matrix_sdk::AbstractProgress> for AbstractProgress {
245
- fn from(value: matrix_sdk::AbstractProgress) -> Self {
+impl From<matrix_sdk::send_queue::AbstractProgress> for AbstractProgress {
+ fn from(value: matrix_sdk::send_queue::AbstractProgress) -> Self {
246
Self {
247
current: value.current.try_into().unwrap_or(u64::MAX),
248
total: value.total.try_into().unwrap_or(u64::MAX),
0 commit comments