pub struct TrafficMatchingList {
pub id: EntityId,
pub name: String,
pub list_type: String,
pub items: Vec<String>,
pub origin: Option<EntityOrigin>,
}Fields§
§id: EntityId§name: String§list_type: StringList type: PORTS, IPV4_ADDRESSES, IPV6_ADDRESSES
items: Vec<String>§origin: Option<EntityOrigin>Trait Implementations§
Source§impl Clone for TrafficMatchingList
impl Clone for TrafficMatchingList
Source§fn clone(&self) -> TrafficMatchingList
fn clone(&self) -> TrafficMatchingList
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 TrafficMatchingList
impl Debug for TrafficMatchingList
Source§impl<'de> Deserialize<'de> for TrafficMatchingList
impl<'de> Deserialize<'de> for TrafficMatchingList
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<TrafficMatchingListResponse> for TrafficMatchingList
impl From<TrafficMatchingListResponse> for TrafficMatchingList
Source§fn from(t: TrafficMatchingListResponse) -> Self
fn from(t: TrafficMatchingListResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TrafficMatchingList
impl RefUnwindSafe for TrafficMatchingList
impl Send for TrafficMatchingList
impl Sync for TrafficMatchingList
impl Unpin for TrafficMatchingList
impl UnsafeUnpin for TrafficMatchingList
impl UnwindSafe for TrafficMatchingList
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