pub enum NodeBackendConfig {
Ble(BleNodeBackendConfig),
TcpClient(TcpClientConfig),
TcpServer(TcpServerConfig),
}Variants§
Trait Implementations§
Source§impl Clone for NodeBackendConfig
impl Clone for NodeBackendConfig
Source§fn clone(&self) -> NodeBackendConfig
fn clone(&self) -> NodeBackendConfig
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 NodeBackendConfig
impl Debug for NodeBackendConfig
impl Eq for NodeBackendConfig
Source§impl PartialEq for NodeBackendConfig
impl PartialEq for NodeBackendConfig
Source§fn eq(&self, other: &NodeBackendConfig) -> bool
fn eq(&self, other: &NodeBackendConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeBackendConfig
Auto Trait Implementations§
impl Freeze for NodeBackendConfig
impl RefUnwindSafe for NodeBackendConfig
impl Send for NodeBackendConfig
impl Sync for NodeBackendConfig
impl Unpin for NodeBackendConfig
impl UnsafeUnpin for NodeBackendConfig
impl UnwindSafe for NodeBackendConfig
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