#[non_exhaustive]pub struct GetIngressRuleRequest {
pub name: String,
/* private fields */
}Expand description
Request message for Firewall.GetIngressRule.
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.name: StringName of the Firewall resource to retrieve.
Example: apps/myapp/firewall/ingressRules/100.
Implementations§
Trait Implementations§
Source§impl Clone for GetIngressRuleRequest
impl Clone for GetIngressRuleRequest
Source§fn clone(&self) -> GetIngressRuleRequest
fn clone(&self) -> GetIngressRuleRequest
Returns a duplicate 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 GetIngressRuleRequest
impl Debug for GetIngressRuleRequest
Source§impl Default for GetIngressRuleRequest
impl Default for GetIngressRuleRequest
Source§fn default() -> GetIngressRuleRequest
fn default() -> GetIngressRuleRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetIngressRuleRequest
impl Message for GetIngressRuleRequest
Source§impl PartialEq for GetIngressRuleRequest
impl PartialEq for GetIngressRuleRequest
impl StructuralPartialEq for GetIngressRuleRequest
Auto Trait Implementations§
impl Freeze for GetIngressRuleRequest
impl RefUnwindSafe for GetIngressRuleRequest
impl Send for GetIngressRuleRequest
impl Sync for GetIngressRuleRequest
impl Unpin for GetIngressRuleRequest
impl UnwindSafe for GetIngressRuleRequest
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