pub struct PrivateLinkResourceProperties {
pub group_id: Option<String>,
pub required_members: Vec<String>,
}Expand description
Properties of a private link resource.
Fields§
§group_id: Option<String>The private link resource group id.
required_members: Vec<String>The private link resource required member names.
Implementations§
Trait Implementations§
Source§impl Clone for PrivateLinkResourceProperties
impl Clone for PrivateLinkResourceProperties
Source§fn clone(&self) -> PrivateLinkResourceProperties
fn clone(&self) -> PrivateLinkResourceProperties
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 PrivateLinkResourceProperties
impl Default for PrivateLinkResourceProperties
Source§fn default() -> PrivateLinkResourceProperties
fn default() -> PrivateLinkResourceProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateLinkResourceProperties
impl<'de> Deserialize<'de> for PrivateLinkResourceProperties
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 PrivateLinkResourceProperties
impl PartialEq for PrivateLinkResourceProperties
Source§fn eq(&self, other: &PrivateLinkResourceProperties) -> bool
fn eq(&self, other: &PrivateLinkResourceProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateLinkResourceProperties
Auto Trait Implementations§
impl Freeze for PrivateLinkResourceProperties
impl RefUnwindSafe for PrivateLinkResourceProperties
impl Send for PrivateLinkResourceProperties
impl Sync for PrivateLinkResourceProperties
impl Unpin for PrivateLinkResourceProperties
impl UnwindSafe for PrivateLinkResourceProperties
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