#[non_exhaustive]pub struct AddIngressGatewayBridgeRequest {
pub max_bitrate: Option<i32>,
pub max_outputs: Option<i32>,
}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.max_bitrate: Option<i32>The maximum expected bitrate (in bps).
max_outputs: Option<i32>The maximum number of expected outputs.
Implementations§
source§impl AddIngressGatewayBridgeRequest
impl AddIngressGatewayBridgeRequest
sourcepub fn max_bitrate(&self) -> Option<i32>
pub fn max_bitrate(&self) -> Option<i32>
The maximum expected bitrate (in bps).
sourcepub fn max_outputs(&self) -> Option<i32>
pub fn max_outputs(&self) -> Option<i32>
The maximum number of expected outputs.
source§impl AddIngressGatewayBridgeRequest
impl AddIngressGatewayBridgeRequest
sourcepub fn builder() -> AddIngressGatewayBridgeRequestBuilder
pub fn builder() -> AddIngressGatewayBridgeRequestBuilder
Creates a new builder-style object to manufacture AddIngressGatewayBridgeRequest.
Trait Implementations§
source§impl Clone for AddIngressGatewayBridgeRequest
impl Clone for AddIngressGatewayBridgeRequest
source§fn clone(&self) -> AddIngressGatewayBridgeRequest
fn clone(&self) -> AddIngressGatewayBridgeRequest
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 PartialEq for AddIngressGatewayBridgeRequest
impl PartialEq for AddIngressGatewayBridgeRequest
source§fn eq(&self, other: &AddIngressGatewayBridgeRequest) -> bool
fn eq(&self, other: &AddIngressGatewayBridgeRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AddIngressGatewayBridgeRequest
Auto Trait Implementations§
impl RefUnwindSafe for AddIngressGatewayBridgeRequest
impl Send for AddIngressGatewayBridgeRequest
impl Sync for AddIngressGatewayBridgeRequest
impl Unpin for AddIngressGatewayBridgeRequest
impl UnwindSafe for AddIngressGatewayBridgeRequest
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.