pub struct Chain<T, U>(/* private fields */);
Expand description
Concatenate two Keys
of different types
Trait Implementations§
Source§impl<T: Keys, U: Keys> Keys for Chain<T, U>
impl<T: Keys, U: Keys> Keys for Chain<T, U>
Source§fn finalize(&mut self) -> Result<(), KeyError>
fn finalize(&mut self) -> Result<(), KeyError>
Finalize the keys, ensure there are no more. Read more
Auto Trait Implementations§
impl<T, U> Freeze for Chain<T, U>
impl<T, U> RefUnwindSafe for Chain<T, U>where
T: RefUnwindSafe,
U: RefUnwindSafe,
impl<T, U> Send for Chain<T, U>
impl<T, U> Sync for Chain<T, U>
impl<T, U> Unpin for Chain<T, U>
impl<T, U> UnwindSafe for Chain<T, U>where
T: UnwindSafe,
U: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more