pub struct IpAccessListPatch {
pub add: Vec<IpAccessListEntry>,
pub remove: Vec<IpAccessListEntry>,
}Expand description
IpAccessListPatch from the ClickHouse Cloud API.
Fields§
§add: Vec<IpAccessListEntry>§remove: Vec<IpAccessListEntry>Trait Implementations§
Source§impl Clone for IpAccessListPatch
impl Clone for IpAccessListPatch
Source§fn clone(&self) -> IpAccessListPatch
fn clone(&self) -> IpAccessListPatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IpAccessListPatch
impl Debug for IpAccessListPatch
Source§impl Default for IpAccessListPatch
impl Default for IpAccessListPatch
Source§fn default() -> IpAccessListPatch
fn default() -> IpAccessListPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IpAccessListPatch
impl<'de> Deserialize<'de> for IpAccessListPatch
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 IpAccessListPatch
impl PartialEq for IpAccessListPatch
Source§fn eq(&self, other: &IpAccessListPatch) -> bool
fn eq(&self, other: &IpAccessListPatch) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IpAccessListPatch
impl Serialize for IpAccessListPatch
impl StructuralPartialEq for IpAccessListPatch
Auto Trait Implementations§
impl Freeze for IpAccessListPatch
impl RefUnwindSafe for IpAccessListPatch
impl Send for IpAccessListPatch
impl Sync for IpAccessListPatch
impl Unpin for IpAccessListPatch
impl UnsafeUnpin for IpAccessListPatch
impl UnwindSafe for IpAccessListPatch
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