Struct lrs::ptr::OwnedPtr

Syntax

struct OwnedPtr<T>
    where T: ?Sized,
{
    /* private fields */
}

Static methods

NameDescription
new

Trait implementations

NameDescription
Copy

Objects that can safely be copied via memcpy.

Deref

Objects that implement the immutable dereference operator.

Eq

Objects that implement the binary == and != operators.

Ord

Objects that are part of a total order.

PartialOrd

Objects that implement the binary <, <=, >, and >= operators.

Send

Objects whose ownership can be moved from one thread to another.

Sync

Objects that allow immutable access from threads other than their owning thread.

UndefState

Types that are not valid when they contain certain bit patterns.