pub struct IpAccessControlEntry {
pub action: Option<IpAccessControlEntryAction>,
pub end_ip_address: Option<String>,
pub start_ip_address: Option<String>,
}
Expand description
IpAccessControlEntry :
Fields§
§action: Option<IpAccessControlEntryAction>
§end_ip_address: Option<String>
§start_ip_address: Option<String>
Implementations§
Source§impl IpAccessControlEntry
impl IpAccessControlEntry
Sourcepub fn new() -> IpAccessControlEntry
pub fn new() -> IpAccessControlEntry
Trait Implementations§
Source§impl Clone for IpAccessControlEntry
impl Clone for IpAccessControlEntry
Source§fn clone(&self) -> IpAccessControlEntry
fn clone(&self) -> IpAccessControlEntry
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 IpAccessControlEntry
impl Debug for IpAccessControlEntry
Source§impl Default for IpAccessControlEntry
impl Default for IpAccessControlEntry
Source§fn default() -> IpAccessControlEntry
fn default() -> IpAccessControlEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IpAccessControlEntry
impl<'de> Deserialize<'de> for IpAccessControlEntry
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 PartialEq for IpAccessControlEntry
impl PartialEq for IpAccessControlEntry
Source§impl Serialize for IpAccessControlEntry
impl Serialize for IpAccessControlEntry
impl StructuralPartialEq for IpAccessControlEntry
Auto Trait Implementations§
impl Freeze for IpAccessControlEntry
impl RefUnwindSafe for IpAccessControlEntry
impl Send for IpAccessControlEntry
impl Sync for IpAccessControlEntry
impl Unpin for IpAccessControlEntry
impl UnwindSafe for IpAccessControlEntry
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