pub struct PackGlobalPrincipal {
pub type_: PackGlobalPrincipalType,
}
Expand description
PackGlobalPrincipal
JSON schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"worldwide"
],
"x-tsType": "PackPrincipalType.Worldwide"
}
},
"additionalProperties": false,
"x-schema-name": "PackGlobalPrincipal"
}
Fields§
§type_: PackGlobalPrincipalType
Trait Implementations§
Source§impl Clone for PackGlobalPrincipal
impl Clone for PackGlobalPrincipal
Source§fn clone(&self) -> PackGlobalPrincipal
fn clone(&self) -> PackGlobalPrincipal
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 PackGlobalPrincipal
impl Debug for PackGlobalPrincipal
Source§impl<'de> Deserialize<'de> for PackGlobalPrincipal
impl<'de> Deserialize<'de> for PackGlobalPrincipal
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<&PackGlobalPrincipal> for PackGlobalPrincipal
impl From<&PackGlobalPrincipal> for PackGlobalPrincipal
Source§fn from(value: &PackGlobalPrincipal) -> Self
fn from(value: &PackGlobalPrincipal) -> Self
Converts to this type from the input type.
Source§impl From<PackGlobalPrincipal> for PackPrincipal
impl From<PackGlobalPrincipal> for PackPrincipal
Source§fn from(value: PackGlobalPrincipal) -> Self
fn from(value: PackGlobalPrincipal) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackGlobalPrincipal
impl RefUnwindSafe for PackGlobalPrincipal
impl Send for PackGlobalPrincipal
impl Sync for PackGlobalPrincipal
impl Unpin for PackGlobalPrincipal
impl UnwindSafe for PackGlobalPrincipal
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