Struct qcell::TLCellOwner[][src]

pub struct TLCellOwner<Q: 'static> { /* fields omitted */ }
Expand description

Borrowing-owner of zero or more TLCell instances.

See crate documentation.

Implementations

Create the singleton owner instance. Each owner may be used to create many TLCell instances. There may be only one instance of this type per thread at any given time for each different marker type Q. This call panics if a second simultaneous instance is created. Since the owner is only valid to use in the thread it is created in, it does not support Send or Sync.

Create a new cell owned by this owner instance. See also TLCell::new.

Borrow contents of a TLCell immutably (read-only). Many TLCell instances can be borrowed immutably at the same time from the same owner.

Borrow contents of a TLCell mutably (read-write). Only one TLCell at a time can be borrowed from the owner using this call. The returned reference must go out of scope before another can be borrowed.

Borrow contents of two TLCell instances mutably. Panics if the two TLCell instances point to the same memory.

Borrow contents of three TLCell instances mutably. Panics if any pair of TLCell instances point to the same memory.

Trait Implementations

Returns the “default value” for a type. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.