pub struct WorkspacePrincipal {
pub type_: WorkspacePrincipalType,
pub workspace_id: String,
}
Expand description
WorkspacePrincipal
JSON schema
{
"type": "object",
"required": [
"type",
"workspaceId"
],
"properties": {
"type": {
"description": "The type of this principal.",
"type": "string",
"enum": [
"workspace"
],
"x-tsType": "PrincipalType.Workspace"
},
"workspaceId": {
"description": "WorkspaceId for the principal.",
"examples": [
"ws-sdfmsdf9"
],
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§type_: WorkspacePrincipalType
The type of this principal.
workspace_id: String
WorkspaceId for the principal.
Trait Implementations§
Source§impl Clone for WorkspacePrincipal
impl Clone for WorkspacePrincipal
Source§fn clone(&self) -> WorkspacePrincipal
fn clone(&self) -> WorkspacePrincipal
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 WorkspacePrincipal
impl Debug for WorkspacePrincipal
Source§impl<'de> Deserialize<'de> for WorkspacePrincipal
impl<'de> Deserialize<'de> for WorkspacePrincipal
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 From<&WorkspacePrincipal> for WorkspacePrincipal
impl From<&WorkspacePrincipal> for WorkspacePrincipal
Source§fn from(value: &WorkspacePrincipal) -> Self
fn from(value: &WorkspacePrincipal) -> Self
Converts to this type from the input type.
Source§impl From<WorkspacePrincipal> for Principal
impl From<WorkspacePrincipal> for Principal
Source§fn from(value: WorkspacePrincipal) -> Self
fn from(value: WorkspacePrincipal) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WorkspacePrincipal
impl RefUnwindSafe for WorkspacePrincipal
impl Send for WorkspacePrincipal
impl Sync for WorkspacePrincipal
impl Unpin for WorkspacePrincipal
impl UnwindSafe for WorkspacePrincipal
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