pub struct AgentIdentityProfile {
pub agent_id: Option<String>,
pub identity_type: Option<String>,
pub subject: Option<String>,
pub issuer: Option<String>,
pub jwks_uri: Option<String>,
pub spiffe_id: Option<String>,
pub scopes: Option<Vec<String>>,
pub anonymous_dev_mode: Option<bool>,
pub created_at: Option<String>,
}Fields§
§agent_id: Option<String>§identity_type: Option<String>§subject: Option<String>§issuer: Option<String>§jwks_uri: Option<String>§spiffe_id: Option<String>§scopes: Option<Vec<String>>§anonymous_dev_mode: Option<bool>§created_at: Option<String>Implementations§
Source§impl AgentIdentityProfile
impl AgentIdentityProfile
pub fn new() -> AgentIdentityProfile
Trait Implementations§
Source§impl Clone for AgentIdentityProfile
impl Clone for AgentIdentityProfile
Source§fn clone(&self) -> AgentIdentityProfile
fn clone(&self) -> AgentIdentityProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AgentIdentityProfile
impl Debug for AgentIdentityProfile
Source§impl Default for AgentIdentityProfile
impl Default for AgentIdentityProfile
Source§fn default() -> AgentIdentityProfile
fn default() -> AgentIdentityProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentIdentityProfile
impl<'de> Deserialize<'de> for AgentIdentityProfile
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 PartialEq for AgentIdentityProfile
impl PartialEq for AgentIdentityProfile
Source§fn eq(&self, other: &AgentIdentityProfile) -> bool
fn eq(&self, other: &AgentIdentityProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentIdentityProfile
impl Serialize for AgentIdentityProfile
impl StructuralPartialEq for AgentIdentityProfile
Auto Trait Implementations§
impl Freeze for AgentIdentityProfile
impl RefUnwindSafe for AgentIdentityProfile
impl Send for AgentIdentityProfile
impl Sync for AgentIdentityProfile
impl Unpin for AgentIdentityProfile
impl UnsafeUnpin for AgentIdentityProfile
impl UnwindSafe for AgentIdentityProfile
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