pub struct AuthorizedNetwork {
pub cidr_range: Option<String>,
}Expand description
AuthorizedNetwork contains metadata for an authorized network.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cidr_range: Option<String>Optional. CIDR range for one authorzied network of the instance.
Trait Implementations§
Source§impl Clone for AuthorizedNetwork
impl Clone for AuthorizedNetwork
Source§fn clone(&self) -> AuthorizedNetwork
fn clone(&self) -> AuthorizedNetwork
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 AuthorizedNetwork
impl Debug for AuthorizedNetwork
Source§impl Default for AuthorizedNetwork
impl Default for AuthorizedNetwork
Source§fn default() -> AuthorizedNetwork
fn default() -> AuthorizedNetwork
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthorizedNetwork
impl<'de> Deserialize<'de> for AuthorizedNetwork
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 Serialize for AuthorizedNetwork
impl Serialize for AuthorizedNetwork
impl Part for AuthorizedNetwork
Auto Trait Implementations§
impl Freeze for AuthorizedNetwork
impl RefUnwindSafe for AuthorizedNetwork
impl Send for AuthorizedNetwork
impl Sync for AuthorizedNetwork
impl Unpin for AuthorizedNetwork
impl UnwindSafe for AuthorizedNetwork
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