pub struct GroupIdInformation {
pub resource: Resource,
pub id: Option<String>,
pub name: Option<String>,
pub type_: Option<String>,
pub properties: GroupIdInformationProperties,
}
Expand description
The group information for creating a private endpoint on a workspace
Fields§
§resource: Resource
§id: Option<String>
The resource identifier.
name: Option<String>
The resource name.
type_: Option<String>
The resource type.
properties: GroupIdInformationProperties
The properties for a group information object
Implementations§
source§impl GroupIdInformation
impl GroupIdInformation
pub fn new(properties: GroupIdInformationProperties) -> Self
Trait Implementations§
source§impl Clone for GroupIdInformation
impl Clone for GroupIdInformation
source§fn clone(&self) -> GroupIdInformation
fn clone(&self) -> GroupIdInformation
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 GroupIdInformation
impl Debug for GroupIdInformation
source§impl<'de> Deserialize<'de> for GroupIdInformation
impl<'de> Deserialize<'de> for GroupIdInformation
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<GroupIdInformation> for GroupIdInformation
impl PartialEq<GroupIdInformation> for GroupIdInformation
source§fn eq(&self, other: &GroupIdInformation) -> bool
fn eq(&self, other: &GroupIdInformation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GroupIdInformation
impl Serialize for GroupIdInformation
impl StructuralPartialEq for GroupIdInformation
Auto Trait Implementations§
impl RefUnwindSafe for GroupIdInformation
impl Send for GroupIdInformation
impl Sync for GroupIdInformation
impl Unpin for GroupIdInformation
impl UnwindSafe for GroupIdInformation
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