#[non_exhaustive]pub struct MulticastGroupByFuotaTask {
pub id: Option<String>,
}Expand description
A multicast group that is associated with a FUOTA task.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>The ID of the multicast group.
Implementations§
source§impl MulticastGroupByFuotaTask
impl MulticastGroupByFuotaTask
sourcepub fn builder() -> MulticastGroupByFuotaTaskBuilder
pub fn builder() -> MulticastGroupByFuotaTaskBuilder
Creates a new builder-style object to manufacture MulticastGroupByFuotaTask.
Trait Implementations§
source§impl Clone for MulticastGroupByFuotaTask
impl Clone for MulticastGroupByFuotaTask
source§fn clone(&self) -> MulticastGroupByFuotaTask
fn clone(&self) -> MulticastGroupByFuotaTask
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 MulticastGroupByFuotaTask
impl Debug for MulticastGroupByFuotaTask
source§impl PartialEq<MulticastGroupByFuotaTask> for MulticastGroupByFuotaTask
impl PartialEq<MulticastGroupByFuotaTask> for MulticastGroupByFuotaTask
source§fn eq(&self, other: &MulticastGroupByFuotaTask) -> bool
fn eq(&self, other: &MulticastGroupByFuotaTask) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MulticastGroupByFuotaTask
Auto Trait Implementations§
impl RefUnwindSafe for MulticastGroupByFuotaTask
impl Send for MulticastGroupByFuotaTask
impl Sync for MulticastGroupByFuotaTask
impl Unpin for MulticastGroupByFuotaTask
impl UnwindSafe for MulticastGroupByFuotaTask
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