pub struct UpdateFirewallPolicyRequest {
pub name: Option<String>,
pub action: Option<FirewallAction>,
pub enabled: Option<bool>,
pub description: Option<String>,
pub protocol: Option<String>,
pub source_address: Option<String>,
pub destination_address: Option<String>,
pub destination_port: Option<String>,
}Fields§
§name: Option<String>§action: Option<FirewallAction>§enabled: Option<bool>§description: Option<String>§protocol: Option<String>§source_address: Option<String>§destination_address: Option<String>§destination_port: Option<String>Trait Implementations§
Source§impl Clone for UpdateFirewallPolicyRequest
impl Clone for UpdateFirewallPolicyRequest
Source§fn clone(&self) -> UpdateFirewallPolicyRequest
fn clone(&self) -> UpdateFirewallPolicyRequest
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 UpdateFirewallPolicyRequest
impl Debug for UpdateFirewallPolicyRequest
Source§impl Default for UpdateFirewallPolicyRequest
impl Default for UpdateFirewallPolicyRequest
Source§fn default() -> UpdateFirewallPolicyRequest
fn default() -> UpdateFirewallPolicyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFirewallPolicyRequest
impl<'de> Deserialize<'de> for UpdateFirewallPolicyRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateFirewallPolicyRequest
impl RefUnwindSafe for UpdateFirewallPolicyRequest
impl Send for UpdateFirewallPolicyRequest
impl Sync for UpdateFirewallPolicyRequest
impl Unpin for UpdateFirewallPolicyRequest
impl UnsafeUnpin for UpdateFirewallPolicyRequest
impl UnwindSafe for UpdateFirewallPolicyRequest
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