Pierre-Antoine Champin
Pierre-Antoine Champin
This was discussed during the WG meeting on 2024-08-22: https://www.w3.org/2024/08/22-did-minutes.html#t13
This was discussed during the did meeting on 2024-08-29: https://www.w3.org/2024/08/29-did-minutes.html#t06
This was discussed during the [json-ld meeting on 13 November 2024](https://www.w3.org/2024/11/13-json-ld-minutes.html#2c6b). View the transcript w3c/json-ld-api#608 <gb> Pull Request 608 Resolve the questions about "JSON Serialization" term (by anatoly-scherbakov) [spec:substantive] [ErratumRaised]...
Sorry for the delay in handling that. I confirm that Echidna is nor working, and the reason seems to be that the WG charter has expired. https://github.com/w3c/did-spec-registries/actions/runs/5381071207/jobs/9765055284#step:7:691 I have requested...
Just to clarify: your suggestion is to change the declaration of `Loader::get` from ```rust fn get( &self, iri: Iri ) -> Result; ``` to ```rust fn get( // Result; ```...
Sorry, I think I initially read the body of your issue too quickly. The immediate solution to your problem is to use [`Iri::as_ref`](https://docs.rs/sophia_iri/latest/sophia_iri/struct.Iri.html#method.as_ref), which gives you a "copy" of the...
The role of `Box` here is not so much to store the array on the heap, than to make the size of `SimpleTerm` computable. See https://doc.rust-lang.org/stable/book/ch15-01-box.html#enabling-recursive-types-with-boxes .
> We have problems finding the right way to basically fully clone a SimpleTerm, how is that done? I'm assuming that by "fully clone", you mean "deep clone", i.e. copy...
> Ah thanks, is this 'static reference here to trick the enum (cause it also holds a ref) into beeing no problem for the borrow checker You can think of...
Thanks for this suggestion, it makes sense. However, I would like to check first whether it breaks badly some known implementations. I will check with mine. @konradhoeffner (for `hdt`), @damooo...