Struct aws_sdk_mediaconnect::types::BridgeNetworkSource
source · #[non_exhaustive]pub struct BridgeNetworkSource {
pub multicast_ip: Option<String>,
pub name: Option<String>,
pub network_name: Option<String>,
pub port: Option<i32>,
pub protocol: Option<Protocol>,
}Expand description
The source of the bridge. A network source originates at your premises.
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.multicast_ip: Option<String>The network source multicast IP.
name: Option<String>The name of the network source.
network_name: Option<String>The network source’s gateway network name.
port: Option<i32>The network source port.
protocol: Option<Protocol>The network source protocol.
Implementations§
source§impl BridgeNetworkSource
impl BridgeNetworkSource
sourcepub fn multicast_ip(&self) -> Option<&str>
pub fn multicast_ip(&self) -> Option<&str>
The network source multicast IP.
sourcepub fn network_name(&self) -> Option<&str>
pub fn network_name(&self) -> Option<&str>
The network source’s gateway network name.
source§impl BridgeNetworkSource
impl BridgeNetworkSource
sourcepub fn builder() -> BridgeNetworkSourceBuilder
pub fn builder() -> BridgeNetworkSourceBuilder
Creates a new builder-style object to manufacture BridgeNetworkSource.
Trait Implementations§
source§impl Clone for BridgeNetworkSource
impl Clone for BridgeNetworkSource
source§fn clone(&self) -> BridgeNetworkSource
fn clone(&self) -> BridgeNetworkSource
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 BridgeNetworkSource
impl Debug for BridgeNetworkSource
source§impl PartialEq for BridgeNetworkSource
impl PartialEq for BridgeNetworkSource
source§fn eq(&self, other: &BridgeNetworkSource) -> bool
fn eq(&self, other: &BridgeNetworkSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BridgeNetworkSource
Auto Trait Implementations§
impl RefUnwindSafe for BridgeNetworkSource
impl Send for BridgeNetworkSource
impl Sync for BridgeNetworkSource
impl Unpin for BridgeNetworkSource
impl UnwindSafe for BridgeNetworkSource
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<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.