Enum bp35c0_j11::Response

source ·
pub enum Response {
Show 24 variants GetStatus { result: u8, global_block: GlobalBlockStatus, route_b_block: RouteBBlockStatus, han_block: HanBlockStatus, }, GetOperationMode { result: u8, mode: OperationMode, han_sleep: bool, channel: Channel, tx_power: TxPower, }, SetOperationMode { result: u8, }, SetNeighborDiscoverySettings { result: u8, }, SetUartSettings { result: u8, }, OpenUdpPort { result: u8, }, CloseUdpPort { result: u8, }, TransmitData { result: u8, result_udp: Option<(u8, Vec<u8>)>, }, DoActiveScan { result: u8, }, NotificationActiveScan { channel: Channel, terminal: Vec<TerminalInformation>, }, GetVersionInformation { result: u8, firmware_id: u16, major: u8, minor: u8, revision: u32, }, NotificationUdpReceived { source_address: u128, source_port: u16, destination_port: u16, source_pan_id: u16, source_type: u8, encryption: u8, rssi: i8, data: Vec<u8>, }, NotificationPoweredOn, NotificationConnectionChanged { state: u8, mac_address: u64, rssi: i8, }, NotificationPanaAuthentication { result: u8, mac_address: u64, }, GetRouteBEncryptionKey { result: u8, encryption_key: [u8; 16], }, GetRouteBPanId { result: u8, pan_id: u16, }, SetRouteBPanaAuthenticationInformation { result: u8, }, StartRouteBOperation { result: u8, terminal: Option<(Channel, TerminalInformation)>, }, StartRouteBPana { result: u8, }, TerminateRouteBPana { result: u8, }, TerminateRouteBOperation { result: u8, }, RedoRouteBPanaAuthentication { result: u8, }, Unknown { code: u16, data: Vec<u8>, },
}

Variants§

§

GetStatus

Fields

§result: u8
§global_block: GlobalBlockStatus
§route_b_block: RouteBBlockStatus
§han_block: HanBlockStatus
§

GetOperationMode

Fields

§result: u8
§han_sleep: bool
§channel: Channel
§tx_power: TxPower
§

SetOperationMode

Fields

§result: u8
§

SetNeighborDiscoverySettings

Fields

§result: u8
§

SetUartSettings

Fields

§result: u8
§

OpenUdpPort

Fields

§result: u8
§

CloseUdpPort

Fields

§result: u8
§

TransmitData

Fields

§result: u8
§result_udp: Option<(u8, Vec<u8>)>
§

DoActiveScan

Fields

§result: u8
§

NotificationActiveScan

Fields

§channel: Channel
§

GetVersionInformation

Fields

§result: u8
§firmware_id: u16
§major: u8
§minor: u8
§revision: u32
§

NotificationUdpReceived

Fields

§source_address: u128
§source_port: u16
§destination_port: u16
§source_pan_id: u16
§source_type: u8
§encryption: u8
§rssi: i8
§data: Vec<u8>
§

NotificationPoweredOn

§

NotificationConnectionChanged

Fields

§state: u8
§mac_address: u64
§rssi: i8
§

NotificationPanaAuthentication

Fields

§result: u8
§mac_address: u64
§

GetRouteBEncryptionKey

Fields

§result: u8
§encryption_key: [u8; 16]
§

GetRouteBPanId

Fields

§result: u8
§pan_id: u16
§

SetRouteBPanaAuthenticationInformation

Fields

§result: u8
§

StartRouteBOperation

Fields

§result: u8
§

StartRouteBPana

Fields

§result: u8
§

TerminateRouteBPana

Fields

§result: u8
§

TerminateRouteBOperation

Fields

§result: u8
§

RedoRouteBPanaAuthentication

Fields

§result: u8
§

Unknown

Fields

§code: u16
§data: Vec<u8>

Trait Implementations§

source§

impl Clone for Response

source§

fn clone(&self) -> Response

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Response

source§

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

Formats the value using the given formatter. Read more
source§

impl PartialEq for Response

source§

fn eq(&self, other: &Response) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Response

source§

impl StructuralPartialEq for Response

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.