WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fun uniffi_matrix_sdk_ffi_fn_method_room_fetch_details_for_event(`ptr`: Pointer,`eventId`: RustBuffer.ByValue,_uniffi_out_err: RustCallStatus,
629
629
): Unit
630
630
fun uniffi_matrix_sdk_ffi_fn_method_room_fetch_members(`ptr`: Pointer,_uniffi_out_err: RustCallStatus,
631
-
): Unit
631
+
): Pointer
632
632
fun uniffi_matrix_sdk_ffi_fn_method_room_get_timeline_event_content_by_event_id(`ptr`: Pointer,`eventId`: RustBuffer.ByValue,_uniffi_out_err: RustCallStatus,
633
633
): Pointer
634
634
fun uniffi_matrix_sdk_ffi_fn_method_room_id(`ptr`: Pointer,_uniffi_out_err: RustCallStatus,
@@ -1826,7 +1826,7 @@ private fun uniffiCheckApiChecksums(lib: _UniFFILib) {
1826
1826
if (lib.uniffi_matrix_sdk_ffi_checksum_method_room_fetch_details_for_event() != 23233.toShort()) {
1827
1827
throw RuntimeException("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
1828
1828
}
1829
-
if (lib.uniffi_matrix_sdk_ffi_checksum_method_room_fetch_members() != 22527.toShort()) {
1829
+
if (lib.uniffi_matrix_sdk_ffi_checksum_method_room_fetch_members() != 63440.toShort()) {
1830
1830
throw RuntimeException("UniFFI API checksum mismatch: try cleaning and rebuilding your project")
1831
1831
}
1832
1832
if (lib.uniffi_matrix_sdk_ffi_checksum_method_room_get_timeline_event_content_by_event_id() != 14169.toShort()) {
@@ -4608,8 +4608,8 @@ public interface RoomInterface {
4608
4608
fun `canonicalAlias`(): String?@Throws(ClientException::class)
4609
4609
fun `displayName`(): String@Throws(ClientException::class)
4610
4610
fun `edit`(`newMsg`: String, `originalEventId`: String, `txnId`: String?)@Throws(ClientException::class)
4611
-
fun `fetchDetailsForEvent`(`eventId`: String)
4612
-
fun `fetchMembers`()@Throws(ClientException::class)
4611
+
fun `fetchDetailsForEvent`(`eventId`: String)@Throws(ClientException::class)
4612
+
fun `fetchMembers`(): TaskHandle@Throws(ClientException::class)
4613
4613
fun `getTimelineEventContentByEventId`(`eventId`: String): RoomMessageEventContent
4614
4614
fun `id`(): String@Throws(ClientException::class)
4615
4615
fun `ignoreUser`(`userId`: String)@Throws(ClientException::class)
@@ -5032,17 +5032,19 @@ class Room(
5032
5032
}
5033
5033
5034
5034
5035
-
override fun `fetchMembers`() =
5035
+
5036
+
@Throws(ClientException::class)override fun `fetchMembers`(): TaskHandle =
0 commit comments