pub struct OrganizationIpRestrictionInput {
pub range: Option<String>,
pub type: Option<String>,
pub description: Option<String>,
pub enabled: Option<bool>,
}Expand description
INTERNAL Organization IP restriction configuration.
Fields§
§range: Option<String>IP range in CIDR format.
type: Option<String>Restriction type.
description: Option<String>Optional restriction description.
enabled: Option<bool>Whether the restriction is enabled.
Trait Implementations§
Source§impl Clone for OrganizationIpRestrictionInput
impl Clone for OrganizationIpRestrictionInput
Source§fn clone(&self) -> OrganizationIpRestrictionInput
fn clone(&self) -> OrganizationIpRestrictionInput
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 Default for OrganizationIpRestrictionInput
impl Default for OrganizationIpRestrictionInput
Source§fn default() -> OrganizationIpRestrictionInput
fn default() -> OrganizationIpRestrictionInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationIpRestrictionInput
impl<'de> Deserialize<'de> for OrganizationIpRestrictionInput
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 OrganizationIpRestrictionInput
impl RefUnwindSafe for OrganizationIpRestrictionInput
impl Send for OrganizationIpRestrictionInput
impl Sync for OrganizationIpRestrictionInput
impl Unpin for OrganizationIpRestrictionInput
impl UnwindSafe for OrganizationIpRestrictionInput
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