pub struct URLFetchOutput {
pub result: String,
pub operation: String,
pub url: String,
pub content_length: usize,
pub details: Option<String>,
}Expand description
URLFetch tool output
Fields§
§result: StringOperation result
operation: StringOperation type
url: StringURL
content_length: usizeContent length
details: Option<String>Extra details
Trait Implementations§
Source§impl Debug for URLFetchOutput
impl Debug for URLFetchOutput
Auto Trait Implementations§
impl Freeze for URLFetchOutput
impl RefUnwindSafe for URLFetchOutput
impl Send for URLFetchOutput
impl Sync for URLFetchOutput
impl Unpin for URLFetchOutput
impl UnsafeUnpin for URLFetchOutput
impl UnwindSafe for URLFetchOutput
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