Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Kimundi/owning-ref-rs
/ types & classes
Types & classes
10 in github.com/Kimundi/owning-ref-rs
⨍
Functions
76
◇
Types & classes
10
↓ 2 callers
Class
Example
src/lib.rs:1243
Class
Bar
src/lib.rs:1995
Interface
Erased
Helper trait for an erased concrete type an owner dereferences to. This is used in form of a trait object for keeping something around to (virtually)
src/lib.rs:280
Class
Foo
src/lib.rs:1992
Interface
IntoErased
Helper trait for erasing the concrete type of what an owner derferences to, for example `Box<T> -> Box<dyn Erased>`. This would be unneeded with highe
src/lib.rs:286
Class
OwningHandle
`OwningHandle` is a complement to `OwningRef`. Where `OwningRef` allows consumers to pass around an owned object and a dependent reference, `OwningHan
src/lib.rs:818
Class
OwningRef
An owning reference. This wraps an owner `O` and a reference `&T` pointing at something reachable from `O::Target` while keeping the ability to move
src/lib.rs:258
Class
OwningRefMut
An mutable owning reference. This wraps an owner `O` and a reference `&mut T` pointing at something reachable from `O::Target` while keeping the abil
src/lib.rs:272
Interface
ToHandle
Trait to implement the conversion of owner to handle for common types.
src/lib.rs:847
Interface
ToHandleMut
Trait to implement the conversion of owner to mutable handle for common types.
src/lib.rs:857