pub struct AddedDomainPrincipal {
pub domain: String,
pub type_: AddedDomainPrincipalType,
}
Expand description
AddedDomainPrincipal
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_: AddedDomainPrincipalType
The type of this principal.
Trait Implementations§
Source§impl Clone for AddedDomainPrincipal
impl Clone for AddedDomainPrincipal
Source§fn clone(&self) -> AddedDomainPrincipal
fn clone(&self) -> AddedDomainPrincipal
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 AddedDomainPrincipal
impl Debug for AddedDomainPrincipal
Source§impl<'de> Deserialize<'de> for AddedDomainPrincipal
impl<'de> Deserialize<'de> for AddedDomainPrincipal
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<&AddedDomainPrincipal> for AddedDomainPrincipal
impl From<&AddedDomainPrincipal> for AddedDomainPrincipal
Source§fn from(value: &AddedDomainPrincipal) -> Self
fn from(value: &AddedDomainPrincipal) -> Self
Converts to this type from the input type.
Source§impl From<AddedDomainPrincipal> for AddedPrincipal
impl From<AddedDomainPrincipal> for AddedPrincipal
Source§fn from(value: AddedDomainPrincipal) -> Self
fn from(value: AddedDomainPrincipal) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddedDomainPrincipal
impl RefUnwindSafe for AddedDomainPrincipal
impl Send for AddedDomainPrincipal
impl Sync for AddedDomainPrincipal
impl Unpin for AddedDomainPrincipal
impl UnwindSafe for AddedDomainPrincipal
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