pub struct IpDeviceConfigurationUpdate {
pub ip_enabled: Option<bool>,
pub unicast_forwarding_enabled: Option<bool>,
pub multicast_forwarding_enabled: Option<bool>,
pub gmp_enabled: Option<bool>,
}
Expand description
An update to IP device configuration.
Fields§
§ip_enabled: Option<bool>
A change in IP enabled.
unicast_forwarding_enabled: Option<bool>
A change in unicast forwarding enabled.
multicast_forwarding_enabled: Option<bool>
A change in multicast forwarding enabled.
gmp_enabled: Option<bool>
A change in Group Messaging Protocol (GMP) enabled.
Trait Implementations§
Source§impl AsRef<IpDeviceConfigurationUpdate> for Ipv4DeviceConfigurationUpdate
impl AsRef<IpDeviceConfigurationUpdate> for Ipv4DeviceConfigurationUpdate
Source§fn as_ref(&self) -> &IpDeviceConfigurationUpdate
fn as_ref(&self) -> &IpDeviceConfigurationUpdate
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<IpDeviceConfigurationUpdate> for Ipv6DeviceConfigurationUpdate
impl AsRef<IpDeviceConfigurationUpdate> for Ipv6DeviceConfigurationUpdate
Source§fn as_ref(&self) -> &IpDeviceConfigurationUpdate
fn as_ref(&self) -> &IpDeviceConfigurationUpdate
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for IpDeviceConfigurationUpdate
impl Clone for IpDeviceConfigurationUpdate
Source§fn clone(&self) -> IpDeviceConfigurationUpdate
fn clone(&self) -> IpDeviceConfigurationUpdate
Returns a copy of the value. Read more
1.0.0 · 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 IpDeviceConfigurationUpdate
impl Debug for IpDeviceConfigurationUpdate
Source§impl Default for IpDeviceConfigurationUpdate
impl Default for IpDeviceConfigurationUpdate
Source§fn default() -> IpDeviceConfigurationUpdate
fn default() -> IpDeviceConfigurationUpdate
Returns the “default value” for a type. Read more
Source§impl From<IpDeviceConfigurationUpdate> for Ipv4DeviceConfigurationUpdate
impl From<IpDeviceConfigurationUpdate> for Ipv4DeviceConfigurationUpdate
Source§fn from(ip_config: IpDeviceConfigurationUpdate) -> Self
fn from(ip_config: IpDeviceConfigurationUpdate) -> Self
Converts to this type from the input type.
Source§impl From<IpDeviceConfigurationUpdate> for Ipv6DeviceConfigurationUpdate
impl From<IpDeviceConfigurationUpdate> for Ipv6DeviceConfigurationUpdate
Source§fn from(ip_config: IpDeviceConfigurationUpdate) -> Self
fn from(ip_config: IpDeviceConfigurationUpdate) -> Self
Converts to this type from the input type.
Source§impl<IpType: Ip> GenericOverIp<IpType> for IpDeviceConfigurationUpdate
impl<IpType: Ip> GenericOverIp<IpType> for IpDeviceConfigurationUpdate
Source§type Type = IpDeviceConfigurationUpdate
type Type = IpDeviceConfigurationUpdate
The type of
Self
when its IP-generic parameter is replaced with the
type NewIp
.impl Copy for IpDeviceConfigurationUpdate
impl Eq for IpDeviceConfigurationUpdate
impl StructuralPartialEq for IpDeviceConfigurationUpdate
Auto Trait Implementations§
impl Freeze for IpDeviceConfigurationUpdate
impl RefUnwindSafe for IpDeviceConfigurationUpdate
impl Send for IpDeviceConfigurationUpdate
impl Sync for IpDeviceConfigurationUpdate
impl Unpin for IpDeviceConfigurationUpdate
impl UnwindSafe for IpDeviceConfigurationUpdate
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
Source§impl<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
impl<O, BC> BuildableCoreContext<BC> for Owhere
O: Default,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
impl<CC, BC, Meta> RecvFrameContext<Meta, BC> for CCwhere
Meta: ReceivableFrameMeta<CC, BC>,
Source§impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
impl<CC, BC, Meta> SendFrameContext<BC, Meta> for CCwhere
Meta: SendableFrameMeta<CC, BC>,
Source§fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
fn send_frame<S>(
&mut self,
bindings_ctx: &mut BC,
metadata: Meta,
frame: S,
) -> Result<(), ErrorAndSerializer<SendFrameErrorReason, S>>where
S: Serializer,
<S as Serializer>::Buffer: BufferMut,
Send a frame. Read more
Source§impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
impl<Id, CC, BC> TimerHandler<BC, Id> for CCwhere
BC: TimerBindingsTypes,
Id: HandleableTimer<CC, BC>,
Source§fn handle_timer(
&mut self,
bindings_ctx: &mut BC,
dispatch: Id,
timer: <BC as TimerBindingsTypes>::UniqueTimerId,
)
fn handle_timer( &mut self, bindings_ctx: &mut BC, dispatch: Id, timer: <BC as TimerBindingsTypes>::UniqueTimerId, )
Handle a timer firing. Read more