pub struct WfbSession {
pub epoch: u64,
pub channel_id: ChannelId,
pub fec_type: u8,
pub fec_k: usize,
pub fec_n: usize,
pub session_key: [u8; 32],
}Fields§
§epoch: u64§channel_id: ChannelId§fec_type: u8§fec_k: usize§fec_n: usize§session_key: [u8; 32]Trait Implementations§
Source§impl Clone for WfbSession
impl Clone for WfbSession
Source§fn clone(&self) -> WfbSession
fn clone(&self) -> WfbSession
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WfbSession
impl Debug for WfbSession
impl Eq for WfbSession
Source§impl PartialEq for WfbSession
impl PartialEq for WfbSession
Source§fn eq(&self, other: &WfbSession) -> bool
fn eq(&self, other: &WfbSession) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WfbSession
Auto Trait Implementations§
impl Freeze for WfbSession
impl RefUnwindSafe for WfbSession
impl Send for WfbSession
impl Sync for WfbSession
impl Unpin for WfbSession
impl UnsafeUnpin for WfbSession
impl UnwindSafe for WfbSession
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