#[non_exhaustive]pub struct FirewallPolicyRuleSecureTag {
pub name: Option<String>,
pub state: Option<State>,
/* private fields */
}Available on crate features
firewall-policies or instances or network-firewall-policies or networks or region-network-firewall-policies only.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: Option<String>Name of the secure tag, created with TagManager’s TagValue API.
state: Option<State>Output only. [Output Only] State of the secure tag, either EFFECTIVE or
INEFFECTIVE. A secure tag is INEFFECTIVE when it is deleted
or its network is deleted.
Implementations§
Source§impl FirewallPolicyRuleSecureTag
impl FirewallPolicyRuleSecureTag
Trait Implementations§
Source§impl Clone for FirewallPolicyRuleSecureTag
impl Clone for FirewallPolicyRuleSecureTag
Source§fn clone(&self) -> FirewallPolicyRuleSecureTag
fn clone(&self) -> FirewallPolicyRuleSecureTag
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 FirewallPolicyRuleSecureTag
impl Debug for FirewallPolicyRuleSecureTag
Source§impl Default for FirewallPolicyRuleSecureTag
impl Default for FirewallPolicyRuleSecureTag
Source§fn default() -> FirewallPolicyRuleSecureTag
fn default() -> FirewallPolicyRuleSecureTag
Returns the “default value” for a type. Read more
impl StructuralPartialEq for FirewallPolicyRuleSecureTag
Auto Trait Implementations§
impl Freeze for FirewallPolicyRuleSecureTag
impl RefUnwindSafe for FirewallPolicyRuleSecureTag
impl Send for FirewallPolicyRuleSecureTag
impl Sync for FirewallPolicyRuleSecureTag
impl Unpin for FirewallPolicyRuleSecureTag
impl UnwindSafe for FirewallPolicyRuleSecureTag
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