pub struct InternalAccessPrincipal {
pub internal_access_type: String,
pub type_: InternalAccessPrincipalType,
}Expand description
InternalAccessPrincipal
JSON schema
{
"type": "object",
"required": [
"internalAccessType",
"type"
],
"properties": {
"internalAccessType": {
"description": "The type of internal access (e.g., support).",
"examples": [
"support"
],
"type": "string"
},
"type": {
"description": "The type of this principal.",
"type": "string",
"enum": [
"internalAccess"
],
"x-tsType": "PrincipalType.InternalAccess"
}
},
"additionalProperties": false
}Fields§
§internal_access_type: StringThe type of internal access (e.g., support).
type_: InternalAccessPrincipalTypeThe type of this principal.
Trait Implementations§
Source§impl Clone for InternalAccessPrincipal
impl Clone for InternalAccessPrincipal
Source§fn clone(&self) -> InternalAccessPrincipal
fn clone(&self) -> InternalAccessPrincipal
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 InternalAccessPrincipal
impl Debug for InternalAccessPrincipal
Source§impl<'de> Deserialize<'de> for InternalAccessPrincipal
impl<'de> Deserialize<'de> for InternalAccessPrincipal
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<&InternalAccessPrincipal> for InternalAccessPrincipal
impl From<&InternalAccessPrincipal> for InternalAccessPrincipal
Source§fn from(value: &InternalAccessPrincipal) -> Self
fn from(value: &InternalAccessPrincipal) -> Self
Converts to this type from the input type.
Source§impl From<InternalAccessPrincipal> for Principal
impl From<InternalAccessPrincipal> for Principal
Source§fn from(value: InternalAccessPrincipal) -> Self
fn from(value: InternalAccessPrincipal) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InternalAccessPrincipal
impl RefUnwindSafe for InternalAccessPrincipal
impl Send for InternalAccessPrincipal
impl Sync for InternalAccessPrincipal
impl Unpin for InternalAccessPrincipal
impl UnwindSafe for InternalAccessPrincipal
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