[−][src]Struct drone_core::inventory::Inventory
The inventory wrapper for T
. Parameter C
encodes the number of emitted
tokens.
See the module-level documentation for details.
Implementations
impl<T: Item> Inventory<T, 0>
[src]
pub fn new(item: T) -> Self
[src]
Creates a new Inventory
in the inactive state with zero tokens
emitted.
item
should contain some form of token.
pub fn free(inventory: Self) -> T
[src]
Drops inventory
and returns the stored item.
pub fn guard(inventory: &mut Self) -> Guard<T>
[src]
Creates an RAII scoped guard.
The item should be already in its active state. The returned guard will
call Item::teardown
on drop.
pub fn teardown(inventory: &mut Self)
[src]
Calls Item::teardown
for the stored item.
impl<T: Item, const C: usize> Inventory<T, C>
[src]
pub fn inventory_token(&self) -> &Token<T>
[src]
Returns a reference to Token
<T>
. While the reference exists, the
item is always in its active state.
impl<T: Item, const C: usize> Inventory<T, C>
[src]
pub fn share1(self) -> (Inventory<T, { C + 1 }>, Token<T>)
[src]
Returns a token and a new inventory object with increased counter in its type.
pub fn share2(self) -> (Inventory<T, { C + 2 }>, Token<T>, Token<T>)
[src]
Returns a token and a new inventory object with increased counter in its type.
pub fn share3(self) -> (Inventory<T, { C + 3 }>, Token<T>, Token<T>, Token<T>)
[src]
Returns a token and a new inventory object with increased counter in its type.
pub fn share4(
self
) -> (Inventory<T, { C + 4 }>, Token<T>, Token<T>, Token<T>, Token<T>)
[src]
self
) -> (Inventory<T, { C + 4 }>, Token<T>, Token<T>, Token<T>, Token<T>)
Returns a token and a new inventory object with increased counter in its type.
pub fn share5(
self
) -> (Inventory<T, { C + 5 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
[src]
self
) -> (Inventory<T, { C + 5 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
Returns a token and a new inventory object with increased counter in its type.
pub fn share6(
self
) -> (Inventory<T, { C + 6 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
[src]
self
) -> (Inventory<T, { C + 6 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
Returns a token and a new inventory object with increased counter in its type.
pub fn share7(
self
) -> (Inventory<T, { C + 7 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
[src]
self
) -> (Inventory<T, { C + 7 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
Returns a token and a new inventory object with increased counter in its type.
pub fn share8(
self
) -> (Inventory<T, { C + 8 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
[src]
self
) -> (Inventory<T, { C + 8 }>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>, Token<T>)
Returns a token and a new inventory object with increased counter in its type.
pub fn merge1(self, a: Token<T>) -> Inventory<T, { C - 1 }>
[src]
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge2(self, a: Token<T>, b: Token<T>) -> Inventory<T, { C - 2 }>
[src]
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge3(
self,
a: Token<T>,
b: Token<T>,
c: Token<T>
) -> Inventory<T, { C - 3 }>
[src]
self,
a: Token<T>,
b: Token<T>,
c: Token<T>
) -> Inventory<T, { C - 3 }>
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge4(
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>
) -> Inventory<T, { C - 4 }>
[src]
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>
) -> Inventory<T, { C - 4 }>
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge5(
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>
) -> Inventory<T, { C - 5 }>
[src]
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>
) -> Inventory<T, { C - 5 }>
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge6(
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>,
f: Token<T>
) -> Inventory<T, { C - 6 }>
[src]
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>,
f: Token<T>
) -> Inventory<T, { C - 6 }>
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge7(
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>,
f: Token<T>,
g: Token<T>
) -> Inventory<T, { C - 7 }>
[src]
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>,
f: Token<T>,
g: Token<T>
) -> Inventory<T, { C - 7 }>
Consumes a token and returns a new inventory object with decreased counter in its type.
pub fn merge8(
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>,
f: Token<T>,
g: Token<T>,
h: Token<T>
) -> Inventory<T, { C - 8 }>
[src]
self,
a: Token<T>,
b: Token<T>,
c: Token<T>,
d: Token<T>,
e: Token<T>,
f: Token<T>,
g: Token<T>,
h: Token<T>
) -> Inventory<T, { C - 8 }>
Consumes a token and returns a new inventory object with decreased counter in its type.
Trait Implementations
impl<T: Item, const C: usize> Deref for Inventory<T, C>
[src]
impl<T: Item, const C: usize> DerefMut for Inventory<T, C>
[src]
Auto Trait Implementations
impl<const C: usize, T> Send for Inventory<T, C> where
T: Send,
T: Send,
impl<const C: usize, T> Sync for Inventory<T, C> where
T: Sync,
T: Sync,
impl<const C: usize, T> Unpin for Inventory<T, C> where
T: Unpin,
T: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,