MCPcopy Create free account
hub / github.com/encrypted-spaces/prototype / clone

Method clone

sdk/src/lib.rs:494–504  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

492
493impl Clone for Space {
494 fn clone(&self) -> Self {
495 Self {
496 id: self.id,
497 transport: Arc::clone(&self.transport),
498 state: Arc::clone(&self.state),
499 key_manager: Arc::clone(&self.key_manager),
500 updates_tx: self.updates_tx.clone(),
501 serialize_mutations: Arc::clone(&self.serialize_mutations),
502 ff_in_progress: Arc::clone(&self.ff_in_progress),
503 }
504 }
505}
506
507#[cfg(all(test, not(target_arch = "wasm32"), feature = "local-transport"))]

Callers 15

test_auth_key_pairFunction · 0.45
new_for_tests_implMethod · 0.45
record_responseFunction · 0.45
build_fixtureFunction · 0.45
classify_keyFunction · 0.45
run_all_workloadsFunction · 0.45
authenticateMethod · 0.45
build_cycle_fixtureFunction · 0.45
run_realistic_sequenceFunction · 0.45
recordMethod · 0.45

Calls

no outgoing calls