diff options
| author | Mason Reed <mason@vector35.com> | 2025-01-27 19:06:18 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-01-27 19:07:19 -0500 |
| commit | b3f2ef82dd8fdc20887c09532c328356cf3552b6 (patch) | |
| tree | 35d33f72d16f5ec8f084b1785dd399c2a5cdd7a0 /rust/src/collaboration/remote.rs | |
| parent | 4551d1f3f4c99d72437d5908fe2aaa0ac850bb1f (diff) | |
Update some rust impl Debug
If a function had a tag it would recurse cyclicly
Diffstat (limited to 'rust/src/collaboration/remote.rs')
| -rw-r--r-- | rust/src/collaboration/remote.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/collaboration/remote.rs b/rust/src/collaboration/remote.rs index 21f148e9..c1250403 100644 --- a/rust/src/collaboration/remote.rs +++ b/rust/src/collaboration/remote.rs @@ -192,7 +192,7 @@ impl Remote { /// Connects to the Remote, loading metadata and optionally acquiring a token. /// /// Use [Remote::connect_with_opts] if you cannot otherwise automatically connect using enterprise. - /// + /// /// WARNING: This is currently **not** thread safe, if you try and connect/disconnect to a remote on /// multiple threads you will be subject to race conditions. To avoid this wrap the [`Remote`] in /// a synchronization primitive, and pass that to your threads. Or don't try and connect on multiple threads. @@ -238,7 +238,7 @@ impl Remote { } /// Disconnects from the remote. - /// + /// /// WARNING: This is currently **not** thread safe, if you try and connect/disconnect to a remote on /// multiple threads you will be subject to race conditions. To avoid this wrap the [`Remote`] in /// a synchronization primitive, and pass that to your threads. Or don't try and connect on multiple threads. |
