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