pub struct WebFetchOk {
pub output: String,
pub meta: FetchMetadata,
pub body_markdown: Option<String>,
pub body_raw: Option<String>,
pub log_path: Option<String>,
pub byte_cap: bool,
}Fields§
§output: String§meta: FetchMetadata§body_markdown: Option<String>§body_raw: Option<String>§log_path: Option<String>§byte_cap: boolTrait Implementations§
Source§impl Clone for WebFetchOk
impl Clone for WebFetchOk
Source§fn clone(&self) -> WebFetchOk
fn clone(&self) -> WebFetchOk
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 moreSource§impl Debug for WebFetchOk
impl Debug for WebFetchOk
Source§impl<'de> Deserialize<'de> for WebFetchOk
impl<'de> Deserialize<'de> for WebFetchOk
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
Auto Trait Implementations§
impl Freeze for WebFetchOk
impl RefUnwindSafe for WebFetchOk
impl Send for WebFetchOk
impl Sync for WebFetchOk
impl Unpin for WebFetchOk
impl UnsafeUnpin for WebFetchOk
impl UnwindSafe for WebFetchOk
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