pub struct IpAccessControlList {
pub data: Option<HashMap<String, Value>>,
pub entries: Option<Vec<IpAccessControlEntry>>,
pub id: Option<Uuid>,
pub insert_instant: Option<i64>,
pub last_update_instant: Option<i64>,
pub name: Option<String>,
}
Expand description
IpAccessControlList :
Fields§
§data: Option<HashMap<String, Value>>
§entries: Option<Vec<IpAccessControlEntry>>
§id: Option<Uuid>
§insert_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
last_update_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
name: Option<String>
Implementations§
source§impl IpAccessControlList
impl IpAccessControlList
sourcepub fn new() -> IpAccessControlList
pub fn new() -> IpAccessControlList
Trait Implementations§
source§impl Clone for IpAccessControlList
impl Clone for IpAccessControlList
source§fn clone(&self) -> IpAccessControlList
fn clone(&self) -> IpAccessControlList
Returns a copy 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 IpAccessControlList
impl Debug for IpAccessControlList
source§impl Default for IpAccessControlList
impl Default for IpAccessControlList
source§fn default() -> IpAccessControlList
fn default() -> IpAccessControlList
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IpAccessControlList
impl<'de> Deserialize<'de> for IpAccessControlList
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 IpAccessControlList
impl PartialEq for IpAccessControlList
source§fn eq(&self, other: &IpAccessControlList) -> bool
fn eq(&self, other: &IpAccessControlList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IpAccessControlList
impl Serialize for IpAccessControlList
impl StructuralPartialEq for IpAccessControlList
Auto Trait Implementations§
impl RefUnwindSafe for IpAccessControlList
impl Send for IpAccessControlList
impl Sync for IpAccessControlList
impl Unpin for IpAccessControlList
impl UnwindSafe for IpAccessControlList
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