Struct capsules_extra::test::udp::MockUdp

source ·
pub struct MockUdp<'a, A: Alarm<'a>> {
    pub alarm: &'a A,
    /* private fields */
}

Fields§

§alarm: &'a A

Implementations§

source§

impl<'a, A: Alarm<'a>> MockUdp<'a, A>

source

pub fn new( id: u16, alarm: &'a A, udp_sender: &'a dyn UDPSender<'a>, udp_receiver: &'a UDPReceiver<'a>, port_table: &'static UdpPortManager, udp_dgram: SubSliceMut<'static, u8>, dst_port: u16, net_cap: &'static NetworkCapability, ) -> MockUdp<'a, A>

source

pub fn start_sending(&self)

source

pub fn update_capability(&self, new_cap: &'static NetworkCapability)

source

pub fn stop_sending(&self)

source

pub fn bind(&self, src_port: u16)

source

pub fn set_dst(&self, dst_port: u16)

source

pub fn send(&self, value: u16) -> Result<(), ErrorCode>

Trait Implementations§

source§

impl<'a, A: Alarm<'a>> AlarmClient for MockUdp<'a, A>

source§

fn alarm(&self)

Callback indicating the alarm time has been reached. The alarm MUST be disabled when this is called. If a new alarm is needed, the client can call Alarm::set_alarm.
source§

impl<'a, A: Alarm<'a>> UDPRecvClient for MockUdp<'a, A>

source§

fn receive( &self, src_addr: IPAddr, _dst_addr: IPAddr, src_port: u16, _dst_port: u16, payload: &[u8], )

source§

impl<'a, A: Alarm<'a>> UDPSendClient for MockUdp<'a, A>

source§

fn send_done( &self, result: Result<(), ErrorCode>, dgram: SubSliceMut<'static, u8>, )

Auto Trait Implementations§

§

impl<'a, A> !Freeze for MockUdp<'a, A>

§

impl<'a, A> !RefUnwindSafe for MockUdp<'a, A>

§

impl<'a, A> !Send for MockUdp<'a, A>

§

impl<'a, A> !Sync for MockUdp<'a, A>

§

impl<'a, A> Unpin for MockUdp<'a, A>

§

impl<'a, A> !UnwindSafe for MockUdp<'a, A>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn into(self) -> U

Calls U::from(self).

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

source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.