pub struct AgentWrapperMcpCommandOutput {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
pub stdout_truncated: bool,
pub stderr_truncated: bool,
}Fields§
§status: ExitStatus§stdout: StringBackends should populate this via crate::bounds::enforce_mcp_output_bound so stdout and
stderr stay aligned with the pinned MM-C04 truncation algorithm.
stderr: String§stdout_truncated: bool§stderr_truncated: boolTrait Implementations§
Source§impl Clone for AgentWrapperMcpCommandOutput
impl Clone for AgentWrapperMcpCommandOutput
Source§fn clone(&self) -> AgentWrapperMcpCommandOutput
fn clone(&self) -> AgentWrapperMcpCommandOutput
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 moreAuto Trait Implementations§
impl Freeze for AgentWrapperMcpCommandOutput
impl RefUnwindSafe for AgentWrapperMcpCommandOutput
impl Send for AgentWrapperMcpCommandOutput
impl Sync for AgentWrapperMcpCommandOutput
impl Unpin for AgentWrapperMcpCommandOutput
impl UnsafeUnpin for AgentWrapperMcpCommandOutput
impl UnwindSafe for AgentWrapperMcpCommandOutput
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