pub enum Assoc<'a> {
DevId(u32),
Version(u32),
RxKey(IterableKeys<'a>),
TxKey(IterableKeys<'a>),
SockFd(u32),
}Available on crate feature
psp only.Variants§
DevId(u32)
PSP device ID.
Version(u32)
PSP versions (AEAD and protocol version) used by this association, dictates the size of the key.
Associated type: Version (enum)
RxKey(IterableKeys<'a>)
TxKey(IterableKeys<'a>)
SockFd(u32)
Sockets which should be bound to the association immediately.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Assoc<'a>
impl<'a> RefUnwindSafe for Assoc<'a>
impl<'a> Send for Assoc<'a>
impl<'a> Sync for Assoc<'a>
impl<'a> Unpin for Assoc<'a>
impl<'a> UnsafeUnpin for Assoc<'a>
impl<'a> UnwindSafe for Assoc<'a>
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