pub struct FlowGatePrincipal {
pub id: PrincipalId,
pub authority: AuthorityLevel,
pub domains: Vec<DomainId>,
pub policy_version: Option<PolicyVersionId>,
}Expand description
Principal facts projected from the flow host or application runtime.
Fields§
§id: PrincipalId§domains: Vec<DomainId>§policy_version: Option<PolicyVersionId>Trait Implementations§
Source§impl Clone for FlowGatePrincipal
impl Clone for FlowGatePrincipal
Source§fn clone(&self) -> FlowGatePrincipal
fn clone(&self) -> FlowGatePrincipal
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 FlowGatePrincipal
impl Debug for FlowGatePrincipal
Source§impl<'de> Deserialize<'de> for FlowGatePrincipal
impl<'de> Deserialize<'de> for FlowGatePrincipal
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlowGatePrincipal, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FlowGatePrincipal, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FlowGatePrincipal
impl Serialize for FlowGatePrincipal
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for FlowGatePrincipal
impl RefUnwindSafe for FlowGatePrincipal
impl Send for FlowGatePrincipal
impl Sync for FlowGatePrincipal
impl Unpin for FlowGatePrincipal
impl UnsafeUnpin for FlowGatePrincipal
impl UnwindSafe for FlowGatePrincipal
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