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