pub struct UpdateBridgeAgentCapabilityRequest {
pub capabilities: Vec<String>,
pub working_directory: Option<String>,
pub hostname: Option<String>,
pub installed_specs: Option<Vec<BridgeInstalledSpec>>,
}Expand description
UpdateBridgeAgentCapabilityRequest model.
Fields§
§capabilities: Vec<String>§working_directory: Option<String>Where the bridge process is running. Stored on the connection record and shown to the operator; read at bridge.ts:3479.
hostname: Option<String>The reporting machine’s hostname; read at bridge.ts:3480.
installed_specs: Option<Vec<BridgeInstalledSpec>>Outcome of the local spec sync, feeding the web drawer’s “Installed locally” badges. Bounded
server-side: at most 100 entries, 200 tool names each, errors truncated to 500 characters.
Entries without a string spec_id are dropped, and reported_at is ignored on input — the
server stamps its own.
Trait Implementations§
Source§impl Clone for UpdateBridgeAgentCapabilityRequest
impl Clone for UpdateBridgeAgentCapabilityRequest
Source§fn clone(&self) -> UpdateBridgeAgentCapabilityRequest
fn clone(&self) -> UpdateBridgeAgentCapabilityRequest
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 Default for UpdateBridgeAgentCapabilityRequest
impl Default for UpdateBridgeAgentCapabilityRequest
Source§fn default() -> UpdateBridgeAgentCapabilityRequest
fn default() -> UpdateBridgeAgentCapabilityRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateBridgeAgentCapabilityRequest
impl<'de> Deserialize<'de> for UpdateBridgeAgentCapabilityRequest
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
impl StructuralPartialEq for UpdateBridgeAgentCapabilityRequest
Auto Trait Implementations§
impl Freeze for UpdateBridgeAgentCapabilityRequest
impl RefUnwindSafe for UpdateBridgeAgentCapabilityRequest
impl Send for UpdateBridgeAgentCapabilityRequest
impl Sync for UpdateBridgeAgentCapabilityRequest
impl Unpin for UpdateBridgeAgentCapabilityRequest
impl UnsafeUnpin for UpdateBridgeAgentCapabilityRequest
impl UnwindSafe for UpdateBridgeAgentCapabilityRequest
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