Struct CcidEndpoints

pub struct CcidEndpoints<const N: usize> { /* private fields */ }

See Socket::dccp_available_ccids.

Trait Implementations

impl<const N: usize> Debug for CcidEndpoints<N>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<const N: usize> Deref for CcidEndpoints<N>

type Target = [u8];
fn deref(&self) -> &[u8]

Auto Trait Implementations

impl<const N: usize> Freeze for CcidEndpoints<N> where [u8; N]: Freeze,

impl<const N: usize> RefUnwindSafe for CcidEndpoints<N> where [u8; N]: RefUnwindSafe,

impl<const N: usize> Send for CcidEndpoints<N> where [u8; N]: Send,

impl<const N: usize> Sync for CcidEndpoints<N> where [u8; N]: Sync,

impl<const N: usize> Unpin for CcidEndpoints<N> where [u8; N]: Unpin,

impl<const N: usize> UnsafeUnpin for CcidEndpoints<N> where [u8; N]: UnsafeUnpin,

impl<const N: usize> UnwindSafe for CcidEndpoints<N> where [u8; N]: UnwindSafe,

Blanket Implementations

impl<P, T> Receiver for CcidEndpoints<N> where P: Deref<Target = T> + ?Sized, T: ?Sized,

type Target = T;

impl<T> Any for CcidEndpoints<N> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for CcidEndpoints<N> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for CcidEndpoints<N> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for CcidEndpoints<N>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for CcidEndpoints<N> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for CcidEndpoints<N> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for CcidEndpoints<N> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>