pub struct URLFetchOutput {
pub result: String,
pub operation: String,
pub url: String,
pub content_length: usize,
pub details: Option<String>,
}Expand description
URLFetch 工具输出
Fields§
§result: String操作结果
operation: String操作类型
url: StringURL
content_length: usize内容长度
details: Option<String>额外信息
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