pub struct AgentKeypairExport {
pub handle: String,
pub agent_id: String,
pub signing_secret_key: String,
pub signing_public_key: String,
pub encryption_secret_key: String,
pub encryption_public_key: String,
pub created_at: DateTime<Utc>,
}Fields§
§handle: String§agent_id: String§signing_secret_key: String§signing_public_key: String§encryption_secret_key: String§encryption_public_key: String§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AgentKeypairExport
impl Clone for AgentKeypairExport
Source§fn clone(&self) -> AgentKeypairExport
fn clone(&self) -> AgentKeypairExport
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 AgentKeypairExport
impl Debug for AgentKeypairExport
Source§impl<'de> Deserialize<'de> for AgentKeypairExport
impl<'de> Deserialize<'de> for AgentKeypairExport
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 AgentKeypairExport
impl RefUnwindSafe for AgentKeypairExport
impl Send for AgentKeypairExport
impl Sync for AgentKeypairExport
impl Unpin for AgentKeypairExport
impl UnsafeUnpin for AgentKeypairExport
impl UnwindSafe for AgentKeypairExport
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