pub struct SocketIngressAgent {
pub id: String,
pub kind: Option<String>,
pub metadata: Option<Map<String, Value>>,
}Expand description
Agent metadata to associate with an ingest session.
Fields§
§id: StringThe agent id.
kind: Option<String>The agent type.
metadata: Option<Map<String, Value>>Free-form metadata.
Trait Implementations§
Source§impl Clone for SocketIngressAgent
impl Clone for SocketIngressAgent
Source§fn clone(&self) -> SocketIngressAgent
fn clone(&self) -> SocketIngressAgent
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 SocketIngressAgent
impl Debug for SocketIngressAgent
Auto Trait Implementations§
impl Freeze for SocketIngressAgent
impl RefUnwindSafe for SocketIngressAgent
impl Send for SocketIngressAgent
impl Sync for SocketIngressAgent
impl Unpin for SocketIngressAgent
impl UnsafeUnpin for SocketIngressAgent
impl UnwindSafe for SocketIngressAgent
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