pub struct Allowed {
pub ip_rules: Option<Vec<IpRule>>,
}Expand description
Allowed IP rule.
This type is not used in any activity, and only used as part of another schema.
Fields§
§ip_rules: Option<Vec<IpRule>>Optional. Optional list of allowed IP rules.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Allowed
impl<'de> Deserialize<'de> for Allowed
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
impl Part for Allowed
Auto Trait Implementations§
impl Freeze for Allowed
impl RefUnwindSafe for Allowed
impl Send for Allowed
impl Sync for Allowed
impl Unpin for Allowed
impl UnwindSafe for Allowed
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