pub struct FirewallZoneResponse {
pub id: Uuid,
pub name: String,
pub network_ids: Vec<Uuid>,
pub metadata: Value,
}Expand description
Firewall zone — from GET /v1/sites/{siteId}/firewall/zones.
Fields§
§id: Uuid§name: String§network_ids: Vec<Uuid>§metadata: ValueTrait Implementations§
Source§impl Clone for FirewallZoneResponse
impl Clone for FirewallZoneResponse
Source§fn clone(&self) -> FirewallZoneResponse
fn clone(&self) -> FirewallZoneResponse
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 FirewallZoneResponse
impl Debug for FirewallZoneResponse
Source§impl<'de> Deserialize<'de> for FirewallZoneResponse
impl<'de> Deserialize<'de> for FirewallZoneResponse
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
Source§impl From<FirewallZoneResponse> for FirewallZone
impl From<FirewallZoneResponse> for FirewallZone
Source§fn from(z: FirewallZoneResponse) -> Self
fn from(z: FirewallZoneResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FirewallZoneResponse
impl PartialEq for FirewallZoneResponse
Source§impl Serialize for FirewallZoneResponse
impl Serialize for FirewallZoneResponse
impl StructuralPartialEq for FirewallZoneResponse
Auto Trait Implementations§
impl Freeze for FirewallZoneResponse
impl RefUnwindSafe for FirewallZoneResponse
impl Send for FirewallZoneResponse
impl Sync for FirewallZoneResponse
impl Unpin for FirewallZoneResponse
impl UnsafeUnpin for FirewallZoneResponse
impl UnwindSafe for FirewallZoneResponse
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