pub struct RegisterAgentResult {
pub id: String,
pub agent_id: String,
pub display_name: Option<String>,
pub status: String,
pub key_id: String,
pub signing_secret: String,
pub created_at: Option<String>,
}Expand description
Result of registering an agent.
Fields§
§id: String§agent_id: String§display_name: Option<String>§status: String§key_id: String§signing_secret: String§created_at: Option<String>Trait Implementations§
Source§impl Clone for RegisterAgentResult
impl Clone for RegisterAgentResult
Source§fn clone(&self) -> RegisterAgentResult
fn clone(&self) -> RegisterAgentResult
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 RegisterAgentResult
impl Debug for RegisterAgentResult
Source§impl<'de> Deserialize<'de> for RegisterAgentResult
impl<'de> Deserialize<'de> for RegisterAgentResult
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
Auto Trait Implementations§
impl Freeze for RegisterAgentResult
impl RefUnwindSafe for RegisterAgentResult
impl Send for RegisterAgentResult
impl Sync for RegisterAgentResult
impl Unpin for RegisterAgentResult
impl UnsafeUnpin for RegisterAgentResult
impl UnwindSafe for RegisterAgentResult
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