#[non_exhaustive]pub struct GetMulticastGroupOutput {
pub arn: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub status: Option<String>,
pub lo_ra_wan: Option<LoRaWanMulticastGet>,
pub created_at: Option<DateTime>,
/* private fields */
}
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.arn: Option<String>
The arn of the multicast group.
id: Option<String>
The ID of the multicast group.
name: Option<String>
The name of the multicast group.
description: Option<String>
The description of the new resource.
status: Option<String>
The status of the multicast group.
lo_ra_wan: Option<LoRaWanMulticastGet>
The LoRaWAN information that is to be returned from getting multicast group information.
created_at: Option<DateTime>
Created at timestamp for the resource.
Implementations§
source§impl GetMulticastGroupOutput
impl GetMulticastGroupOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the new resource.
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanMulticastGet>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanMulticastGet>
The LoRaWAN information that is to be returned from getting multicast group information.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
Created at timestamp for the resource.
source§impl GetMulticastGroupOutput
impl GetMulticastGroupOutput
sourcepub fn builder() -> GetMulticastGroupOutputBuilder
pub fn builder() -> GetMulticastGroupOutputBuilder
Creates a new builder-style object to manufacture GetMulticastGroupOutput
.
Trait Implementations§
source§impl Clone for GetMulticastGroupOutput
impl Clone for GetMulticastGroupOutput
source§fn clone(&self) -> GetMulticastGroupOutput
fn clone(&self) -> GetMulticastGroupOutput
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 GetMulticastGroupOutput
impl Debug for GetMulticastGroupOutput
source§impl PartialEq for GetMulticastGroupOutput
impl PartialEq for GetMulticastGroupOutput
source§fn eq(&self, other: &GetMulticastGroupOutput) -> bool
fn eq(&self, other: &GetMulticastGroupOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetMulticastGroupOutput
impl RequestId for GetMulticastGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetMulticastGroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetMulticastGroupOutput
impl Send for GetMulticastGroupOutput
impl Sync for GetMulticastGroupOutput
impl Unpin for GetMulticastGroupOutput
impl UnwindSafe for GetMulticastGroupOutput
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