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