pub struct AgentRegistrationKeys {
pub primary: Option<String>,
pub secondary: Option<String>,
}Expand description
Definition of the agent registration keys.
Fields§
§primary: Option<String>Gets or sets the primary key.
secondary: Option<String>Gets or sets the secondary key.
Implementations§
Trait Implementations§
Source§impl Clone for AgentRegistrationKeys
impl Clone for AgentRegistrationKeys
Source§fn clone(&self) -> AgentRegistrationKeys
fn clone(&self) -> AgentRegistrationKeys
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 AgentRegistrationKeys
impl Debug for AgentRegistrationKeys
Source§impl Default for AgentRegistrationKeys
impl Default for AgentRegistrationKeys
Source§fn default() -> AgentRegistrationKeys
fn default() -> AgentRegistrationKeys
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentRegistrationKeys
impl<'de> Deserialize<'de> for AgentRegistrationKeys
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 AgentRegistrationKeys
impl PartialEq for AgentRegistrationKeys
Source§impl Serialize for AgentRegistrationKeys
impl Serialize for AgentRegistrationKeys
impl StructuralPartialEq for AgentRegistrationKeys
Auto Trait Implementations§
impl Freeze for AgentRegistrationKeys
impl RefUnwindSafe for AgentRegistrationKeys
impl Send for AgentRegistrationKeys
impl Sync for AgentRegistrationKeys
impl Unpin for AgentRegistrationKeys
impl UnwindSafe for AgentRegistrationKeys
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