[][src]Trait swim_mem::resident::ResidentAddAssign

pub trait ResidentAddAssign<L: Lease, Rhs = Self>: Resident {
    fn resident_add_assign(lease: &mut L, rhs: Rhs);
}

A += operable Resident of a raw memory Lease.

Required methods

fn resident_add_assign(lease: &mut L, rhs: Rhs)

Adds rhs to the resident of the lease.

Loading content...

Implementors

impl<'a, 'b, L: DynamicLease<'a, Data = u8, Meta = BufHeader<M>>, M> ResidentAddAssign<L, &'b str> for String<M>[src]

Loading content...