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