Struct crossbeam::mem::epoch::Owned
[−]
[src]
pub struct Owned<T> { // some fields omitted }
Like Box<T>
: an owned, heap-allocated data value of type T
.
pub struct Owned<T> { // some fields omitted }
Like Box<T>
: an owned, heap-allocated data value of type T
.
impl<T> Owned<T>
impl<T> Deref for Owned<T>
type Target = T
fn deref(&self) -> &T
impl<T> DerefMut for Owned<T>
fn deref_mut(&mut self) -> &mut T
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).
Search functions by type signature (e.g.
vec -> usize
)